rott/kf_sources/KFMod/Classes/KFZombieZoneVolume.uc
2026-07-14 20:27:09 +07:00

17 lines
372 B
Ucode

// A special type of volume which functions like a blocking volume, but blocks ONLY humans from entering
class KFZombieZoneVolume extends BlockingVolume;
function Trigger( actor Other, pawn EventInstigator )
{
SetCollision(!bCollideActors);
}
defaultproperties
{
bClassBlocker=True
BlockedClasses(0)=Class'KFMod.KFHumanPawn'
bStatic = false
}