home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / VolumeTimer.uc < prev    next >
Text File  |  2003-06-23  |  277b  |  21 lines

  1. class VolumeTimer extends info;
  2.  
  3. var PhysicsVolume V;
  4.  
  5. function PostBeginPlay()
  6. {
  7.     Super.PostBeginPlay();
  8.     SetTimer(1.0, true);
  9.     V = PhysicsVolume(Owner);
  10. }
  11.  
  12. function Timer()
  13. {
  14.     V.TimerPop(self);
  15. }
  16.  
  17. defaultproperties
  18. {
  19.     bStatic=false
  20.     RemoteRole=ROLE_None
  21. }