rott/kf_sources/GamePlay/Classes/Action_STOPANIMATION.uc
2026-07-14 20:27:09 +07:00

13 lines
232 B
Ucode

class ACTION_StopAnimation extends ScriptedAction;
function bool InitActionFor(ScriptedController C)
{
C.ClearAnimation();
return false;
}
defaultproperties
{
ActionString="stop animation"
bValidForTrigger=false
}