From f9a96f885c7a9df9f1e23ab8b20589cd51fae6d2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 8 Jan 2005 22:10:04 +0000 Subject: [PATCH] (let's just remove glowmode entirely) --- stepmania/src/Actor.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index fe3d573d8b..4ebc997862 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -695,12 +695,6 @@ void Actor::HandleCommand( const Command &command ) else if( sName=="diffusealpha" ) SetDiffuseAlpha( fArg(1) ); else if( sName=="diffusecolor" ) SetDiffuseColor( cArg(1) ); else if( sName=="glow" ) SetGlow( cArg(1) ); - else if( sName=="glowmode" ) { - if( !sArg(1).CompareNoCase("whiten") ) - SetGlowMode( GLOW_WHITEN ); - else - FAIL_M( ssprintf("Unknown GlowMode \"%s\"", sArg(1).c_str()) ); - } else if( sName=="rotationx" ) SetRotationX( fArg(1) ); else if( sName=="rotationy" ) SetRotationY( fArg(1) ); else if( sName=="rotationz" ) SetRotationZ( fArg(1) );