Update Moveable.cpp

This commit is contained in:
ALord7 2024-08-27 10:55:13 +08:00 committed by GitHub
parent 4175868489
commit 707bf993d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -175,6 +175,10 @@ void idMoveable::Spawn( void ) {
if ( spawnArgs.GetBool( "nonsolid" ) ) {
BecomeNonSolid();
}
if ( spawnArgs.GetBool( "gibclear" ) ) { // makes the moveable burn at spawn, i don't know if this works!!!
GetRenderEntity()->shaderParms[SHADERPARM_TIME_OF_DEATH] = gameLocal.time * 0.001f; // darknar, test custom gib clear for splat moveable for optimization
PostEventMS( &EV_Remove, 4000 ); // darknar, remove this after 4 seconds
}
allowStep = spawnArgs.GetBool( "allowStep", "1" );