mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: diwako
|
|
* Apply a fitting unconscious animation to a knocked out unit
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Animation <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_unit, _anim] call ace_medical_engine_fnc_applyAnimAfterRagdoll;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_anim"];
|
|
TRACE_2("applyAnimAfterRagdoll",_unit,_unconsciousAnimation);
|
|
|
|
if !(IS_UNCONSCIOUS(_unit) && // do not run if unit is conscious
|
|
{alive _unit && // do not run if unit is dead
|
|
{isNull objectParent _unit}}) exitWith {}; // do not run if unit in any vehicle
|
|
|
|
private _unconsciousAnimation = selectRandom (GVAR(animations) getVariable [_anim, [""]]);
|
|
|
|
if (_unconsciousAnimation isEqualTo "") exitWith {
|
|
// not a valid animation found
|
|
ERROR_1("No valid animation found! [from anim: %1]",_anim);
|
|
};
|
|
|
|
// Apply the animation only locally on the machine and do not broadcast it to others
|
|
// Reason is the nature of setUnconscious' end of ragdoll animation is not synced on all machines either
|
|
// Not synced animations are preferred over units snapping from one to another animation
|
|
_unit switchMove _unconsciousAnimation;
|