Call of Duty 4: Scripting Reference - Animation::SetFlaggedAnimKnobLimitedRestart
From COD Modding & Mapping Wiki
SetFlaggedAnimKnobLimitedRestart( <notifyname>, <animation>, <weight>, <time>, <rate> )
Module: Animation
SP Only
Summary:
See "SetAnim."
Call this on: <entity>
Example:
self SetFlaggedAnimKnobLimitedRestart( "runanim", %precombatrun1, 1, 0.1, 1 );
Required arguments:
- <notifyname> The string to notify notetracks with.
- <animation> The animation or animtree node to change.
Optional arguments:
- <weight> Goal weight of this animation. Defaults to 1.0.
- <time> Time to transition to this weight in seconds. Defaults to 0.2.
- <rate> Playback rate of the animation. Defaults to 1.0.
Notes:
- none