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

23 lines
523 B
Ucode

// KFs very own higher-res Bloodstains
class KFBloodSplatterDecal extends ROBloodSplatter;
#exec OBJ LOAD File=KFX.utx
simulated function PostBeginPlay()
{
ProjTexture = splats[Rand(3)];
FOV = Rand(6);
SetDrawScale((Rand(2)-0.7) + (Rand(1)+0.05));
Super.PostBeginPlay();
}
defaultproperties
{
Splats(0)=Texture'KFX.BloodSplat1'
Splats(1)=Texture'KFX.BloodSplat2'
Splats(2)=Texture'KFX.BloodSplat3'
ProjTexture=Texture'KFX.BloodSplat1'
LifeSpan=10.000000
}