listVehicleSensors: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= *\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
m (Some wiki formatting)
Line 5: Line 5:
|gr1= Sensors
|gr1= Sensors


|descr= Returns an array of the sensors in the given vehicle's config (configfile >> CfgVehicles >> vehicle >> Components >> SensorsManagerComponent >> Components).
|descr= Returns an array of the sensors in the given vehicle's config (configFile >> "CfgVehicles" >> ''vehicle'' >> "Components" >> "SensorsManagerComponent" >> "Components").


|s1= [[listVehicleSensors]] vehicle
|s1= [[listVehicleSensors]] vehicle
Line 13: Line 13:
|r1= [[Array]] of [[String]]s
|r1= [[Array]] of [[String]]s


|x1= <code>_sensors = [[listVehicleSensors]] ([[vehicle]] [[player]]);
|x1= <sqf>
[[hint]] [[str]] _sensors;</code>
private _sensors = listVehicleSensors _v44blackfish;
hint str _sensors;
/*
e.g for a V44 Blackfish:
"ActiveRadarSensorComponent",
"IRSensorComponent",
"LaserSensorComponent",
"NVSensorComponent",
"VisualSensorComponent"
*/
</sqf>


|seealso= [[listRemoteTargets]] [[enableVehicleSensor]] [[isVehicleRadarOn]] [[isVehicleSensorEnabled]]
|seealso= [[listRemoteTargets]] [[enableVehicleSensor]] [[isVehicleRadarOn]] [[isVehicleSensorEnabled]]
}}
}}

Revision as of 21:43, 20 March 2022

Hover & click on the images for description

Description

Description:
Returns an array of the sensors in the given vehicle's config (configFile >> "CfgVehicles" >> vehicle >> "Components" >> "SensorsManagerComponent" >> "Components").
Groups:
Sensors

Syntax

Syntax:
listVehicleSensors vehicle
Parameters:
vehicle: Object
Return Value:
Array of Strings

Examples

Example 1:
private _sensors = listVehicleSensors _v44blackfish; hint str _sensors; /* e.g for a V44 Blackfish: "ActiveRadarSensorComponent", "IRSensorComponent", "LaserSensorComponent", "NVSensorComponent", "VisualSensorComponent" */

Additional Information

See also:
listRemoteTargets enableVehicleSensor isVehicleRadarOn isVehicleSensorEnabled

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note