listVehicleSensors: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
Line 11: Line 11:
|p1= vehicle: [[Object]]
|p1= vehicle: [[Object]]


|r1= [[Array]] of [[Array]]s of [String]]s
|r1= [[Array]] of [[Array]]s of [[String]]s format [className, componentType] (use ''className'' for [[enableVehicleSensor]] / [[isVehicleSensorEnabled]])


|x1= <sqf>
|x1= <sqf>
Line 30: Line 30:


|seealso= [[listRemoteTargets]] [[enableVehicleSensor]] [[isVehicleRadarOn]] [[isVehicleSensorEnabled]]
|seealso= [[listRemoteTargets]] [[enableVehicleSensor]] [[isVehicleRadarOn]] [[isVehicleSensorEnabled]]
}}
{{Note
|user= Samatra
|timestamp= 20240324124210
|text= First string is sensor class name, second string is <sqf inline>componentType</sqf> value from the class. Use first string for enable commands.
}}
}}

Latest revision as of 19:31, 24 March 2024

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 Arrays of Strings format [className, componentType] (use className for enableVehicleSensor / isVehicleSensorEnabled)

Examples

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

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