1
0
KF2-Dev-Scripts/Engine/Classes/VolumeTimer.uc
2020-12-13 18:01:13 +03:00

27 lines
386 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class VolumeTimer extends Info;
var PhysicsVolume V;
event PostBeginPlay()
{
Super.PostBeginPlay();
V = PhysicsVolume(Owner);
SetTimer(V.PainInterval, true);
}
event Timer()
{
V.TimerPop(self);
}
defaultproperties
{
TickGroup=TG_PreAsyncWork
bStatic=false
RemoteRole=ROLE_None
}