ACE3/addons/compat_gm/functions/fnc_onDeployRopes.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
498 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: nomisum
* Function for animating ropes when actually dropping (first introduced for GM Bo 105).
* Original onPrepare already animates when preparing FRIES.
*
* Arguments:
* 0: Helicopter <OBJECT>
*
* Return Value:
* Amount of time to wait for animation to finish <NUMBER>
*
* Example:
* [_vehicle] call ace_compat_gm_fnc_onDeployRopes
*
* Public: No
*/
params ["_vehicle"];
_vehicle animateSource ["swooperRopes_unhide", 0, true];
0