From 2599b326339078ab0ee6c445788c19eb615129b0 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 1 Feb 2004 23:04:09 +0000 Subject: [PATCH] add "backfacecull" command --- stepmania/src/Actor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index 064db975d1..784dbf8f72 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -814,6 +814,7 @@ void Actor::HandleCommand( const ParsedCommand &command ) else if( sName=="ztest" ) SetZTest( bParam(1) ); else if( sName=="zwrite" ) SetZWrite( bParam(1) ); else if( sName=="clearzbuffer" ) SetClearZBuffer( bParam(1) ); + else if( sName=="backfacecull" ) SetUseBackfaceCull( bParam(1) ); else if( sName=="hidden" ) SetHidden( bParam(1) ); else if( sName=="playcommand" ) PlayCommand( sParam(1) );