isCollisionLightOn: Difference between revisions
| Skaronator (talk | contribs) No edit summary | Lou Montana (talk | contribs)  m (Text replacement - "Killzone Kid" to "Killzone_Kid") | ||
| (50 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
| {{ | {{RV|type=command | ||
| | arma3 |=  | |game1= arma3 | ||
| |version1= 1.32 | |||
| | | |gr1= Lights | ||
| |arg= global | |arg= global | ||
| | Returns [[true]] if vehicle collision lights are on otherwise [[false]].  | |descr= Returns [[true]] if vehicle collision lights are on otherwise [[false]]. | ||
| |  | |s1= [[isCollisionLightOn]] vehicle | ||
| |p1= vehicle: [[Object]]  | |p1= vehicle: [[Object]] | ||
| |r1= [[Boolean]] | |||
| |x1= < | |x1= <sqf>_collisionLightOn = isCollisionLightOn heli;</sqf> | ||
| |seealso= [[isEngineOn]] [[isLightOn]] [[setPilotLight]] [[setCollisionLight]] [[isIRLaserOn]] | |||
| }} | |||
| <dl class="command_description"> | |||
| |  | <dt></dt> | ||
| <dd class="notedate">Posted on 2015-04-06 - 08:25 (UTC)</dd> | |||
| } | <dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt> | ||
| <dd class="note"> | |||
| Bind Collision light action to UserAction 2 | |||
| <sqf> | |||
| this addAction ["", { | |||
| 	_this select 1 action [ | |||
| 		["CollisionLightOn", "CollisionLightOff"] select isCollisionLightOn (_this select 0),  | |||
| 		_this select 0 | |||
| 	]; | |||
| }, "", -10, false, true, "User2", "_this == driver _target"]; | |||
| </sqf> | |||
| </dd> | |||
| </dl> | </dl> | ||
Latest revision as of 13:48, 12 March 2024
Description
Syntax
- Syntax:
- isCollisionLightOn vehicle
- Parameters:
- vehicle: Object
- Return Value:
- Boolean
Examples
- Example 1:
Additional Information
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
- Posted on 2015-04-06 - 08:25 (UTC)
- Killzone_Kid
- Bind Collision light action to UserAction 2
 
	