home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Gameplay / Classes / ACTION_StopAnimation.uc < prev    next >
Text File  |  2003-12-11  |  232b  |  13 lines

  1. class ACTION_StopAnimation extends ScriptedAction;
  2.  
  3. function bool InitActionFor(ScriptedController C)
  4. {
  5.     C.ClearAnimation();
  6.     return false;    
  7. }
  8.  
  9. defaultproperties
  10. {
  11.     ActionString="stop animation"
  12.     bValidForTrigger=false
  13. }