mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
274 B
Plaintext
14 lines
274 B
Plaintext
/**
|
|
* fn_playMoveNow.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
|
|
private ["_unit", "_anim"];
|
|
_unit = [_this,0,objNull,[objNull]] call BIS_fnc_Param;
|
|
_anim = [_this,1,"",[""]] call BIS_fnc_Param;
|
|
_unit playMoveNow _anim; |