isCollisionLightOn: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "") |
Lou Montana (talk | contribs) m (Text replacement - "Killzone Kid" to "Killzone_Kid") |
||
(31 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 | |game1= arma3 | ||
|version1= 1.32 | |||
| | |gr1= Lights | ||
| | |arg= global | ||
| | |descr= Returns [[true]] if vehicle collision lights are on otherwise [[false]]. | ||
| | |s1= [[isCollisionLightOn]] vehicle | ||
|p1= vehicle: [[Object]] | |p1= vehicle: [[Object]] | ||
| [[Boolean]] | |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="notedate">Posted on | |||
<dt class="note">[[User: | |||
<dd class="note"> | <dd class="note"> | ||
Bind Collision light action to UserAction 2 | Bind Collision light action to UserAction 2 | ||
< | <sqf> | ||
_this | this addAction ["", { | ||
["CollisionLightOn", "CollisionLightOff"] | _this select 1 action [ | ||
_this | ["CollisionLightOn", "CollisionLightOff"] select isCollisionLightOn (_this select 0), | ||
_this select 0 | |||
]; | ]; | ||
}, "", -10, | }, "", -10, false, true, "User2", "_this == driver _target"]; | ||
</sqf> | |||
</dd> | </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