ACE3/TO_MERGE/cse/main/anim/functions/fn_switchAnim.sqf

15 lines
294 B
Plaintext
Raw Normal View History

2015-01-12 22:35:40 +00:00
/**
* fn_switchAnim.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 switchMove _anim;
_unit playMove _anim;