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

  1. class ACTION_Crouch extends ScriptedAction;
  2.  
  3. function bool InitActionFor(ScriptedController C)
  4. {
  5.     C.Pawn.ShouldCrouch(true);
  6.     return false;    
  7. }
  8.  
  9. defaultproperties
  10. {
  11.     ActionString="crouch"
  12.     bValidForTrigger=false
  13. }