add SetHidden command

This commit is contained in:
Glenn Maynard
2003-11-06 07:18:11 +00:00
parent 5a30c390d6
commit 3f3671c3e7
+1
View File
@@ -789,6 +789,7 @@ void Actor::HandleCommand( const CStringArray &asTokens )
else if( sName=="blend" ) SetBlendMode( sParam(1) ); else if( sName=="blend" ) SetBlendMode( sParam(1) );
else if( sName=="zbuffer" ) SetUseZBuffer( bParam(1) ); else if( sName=="zbuffer" ) SetUseZBuffer( bParam(1) );
else if( sName=="clearzbuffer" ) SetClearZBuffer( bParam(1) ); else if( sName=="clearzbuffer" ) SetClearZBuffer( bParam(1) );
else if( sName=="hidden" ) SetHidden( bParam(1) );
else if( sName=="playcommand" ) sParam(1); /* nop: only BGAnimation handles this but everyone receives it */ else if( sName=="playcommand" ) sParam(1); /* nop: only BGAnimation handles this but everyone receives it */
else else
{ {