mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
456 B
Plaintext
23 lines
456 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: nomisum
|
|
* Function for animating ropes (first introduced for GM Bo 105).
|
|
* Original onCut runs when _stowing_ FRIES.
|
|
*
|
|
* Arguments:
|
|
* 0: Helicopter <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Amount of time to wait for animation to finish <NUMBER>
|
|
*
|
|
* Example:
|
|
* [_vehicle] call ace_compat_gm_fnc_onCutRopes
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_vehicle"];
|
|
|
|
_vehicle animateSource ["swooperRopes_unhide", 1, true];
|
|
|
|
0
|