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

  1. class ACTION_KeepCurrentRotation extends ScriptedAction;
  2.  
  3. function bool InitActionFor(ScriptedController C)
  4. {
  5.     C.bUseScriptFacing = false;
  6.     return false;    
  7. }
  8.  
  9. defaultproperties
  10. {
  11.     ActionString="keep current rotation"
  12. }