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

20 lines
403 B
Ucode

class VomitDecal extends ProjectedDecal;
#exec OBJ LOAD File=KFX.utx
simulated function BeginPlay()
{
if ( !Level.bDropDetail && (FRand() < 0.5) )
ProjTexture = texture'VomSplat';
Super.BeginPlay();
}
defaultproperties
{
ProjTexture=Texture'KFX.VomSplat'
bClipStaticMesh=True
CullDistance=7000.000000
LifeSpan=5.000000
DrawScale=0.500000
}