mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-04-04 16:41:31 +00:00
Update Moveable.cpp
This commit is contained in:
parent
4175868489
commit
707bf993d4
1 changed files with 4 additions and 0 deletions
|
@ -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" );
|
||||
|
||||
|
|
Loading…
Reference in a new issue