make directions that aren't available transparent, not dimmed

This commit is contained in:
Chris Danford
2005-08-15 16:04:22 +00:00
parent 133530525f
commit 62ad5112f2
+2 -2
View File
@@ -82,8 +82,8 @@ void OptionsCursorPlus::SetCanGo( bool bCanGoLeft, bool bCanGoRight )
m_sprCanGoLeft.EnableAnimation( bCanGoLeft );
m_sprCanGoRight.EnableAnimation( bCanGoRight );
m_sprCanGoLeft.SetDiffuse( bCanGoLeft ? RageColor(1,1,1,1) : RageColor(0.5,0.5,0.5,1) );
m_sprCanGoRight.SetDiffuse( bCanGoRight ? RageColor(1,1,1,1) : RageColor(0.5,0.5,0.5,1) );
m_sprCanGoLeft.SetDiffuse( bCanGoLeft ? RageColor(1,1,1,1) : RageColor(1,1,1,0) );
m_sprCanGoRight.SetDiffuse( bCanGoRight ? RageColor(1,1,1,1) : RageColor(1,1,1,0) );
}
void OptionsCursor::StopTweening()