mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
81e02a7336
* Everything * Fixed missing ; * Fix missing ; and double private * Fixed cannot isNull on number * Turn _temparture back to isNil * Fix error from merge
45 lines
841 B
Plaintext
45 lines
841 B
Plaintext
/*
|
|
* Author: Rocko, Ruthberg
|
|
*
|
|
* Dismounts the concertina wire
|
|
*
|
|
* Arguments:
|
|
* 0: wire <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [wire] call ace_concertina_wire_fnc_dismountSuccess
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_wire"];
|
|
|
|
{
|
|
_wire animate [_x, 1];
|
|
} count WIRE_FAST;
|
|
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_wire"];
|
|
|
|
if (_wire animationPhase "wire_2" == 1) then {
|
|
|
|
private _dir = getDir _wire;
|
|
private _pos = getPosASL _wire;
|
|
|
|
private _wirecoil = "ACE_ConcertinaWireCoil" createvehicle [0, 0, 0];
|
|
|
|
deleteVehicle _wire;
|
|
|
|
_wirecoil setDir _dir;
|
|
_wirecoil setPosASL _pos;
|
|
_wirecoil setVelocity [0, 0, 0];
|
|
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
}, 0, [_wire]] call CBA_fnc_addPerFrameHandler;
|