home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Level Design
/
GLDesign.bin
/
Software
/
UnrealEngine2Runtime
/
UE2Runtime-22262001_Demo.exe
/
Engine
/
Classes
/
VolumeTimer.uc
< prev
next >
Wrap
Text File
|
2003-06-23
|
277b
|
21 lines
class VolumeTimer extends info;
var PhysicsVolume V;
function PostBeginPlay()
{
Super.PostBeginPlay();
SetTimer(1.0, true);
V = PhysicsVolume(Owner);
}
function Timer()
{
V.TimerPop(self);
}
defaultproperties
{
bStatic=false
RemoteRole=ROLE_None
}