diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index 4ebc997862..0008881118 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -845,7 +845,6 @@ void Actor::TweenState::Init() for(int i=0; i<4; i++) diffuse[i] = RageColor( 1, 1, 1, 1 ); glow = RageColor( 1, 1, 1, 0 ); - glowmode = GLOW_WHITEN; } void Actor::TweenState::MakeWeightedAverage( TweenState& average_out, const TweenState& ts1, const TweenState& ts2, float fPercentBetween ) diff --git a/stepmania/src/Actor.h b/stepmania/src/Actor.h index 3beb828a7a..7ed6883a09 100644 --- a/stepmania/src/Actor.h +++ b/stepmania/src/Actor.h @@ -48,7 +48,6 @@ public: RectF fade; // 0 = no fade RageColor diffuse[4]; RageColor glow; - GlowMode glowmode; Command command; // command to execute when this void Init(); @@ -178,8 +177,6 @@ public: RageColor GetDiffuses( int i ) { return DestTweenState().diffuse[i]; }; void SetGlow( RageColor c ) { DestTweenState().glow = c; }; RageColor GetGlow() { return DestTweenState().glow; }; - void SetGlowMode( GlowMode m ) { DestTweenState().glowmode = m; }; - GlowMode GetGlowMode() { return DestTweenState().glowmode; }; void BeginTweening( float time, TweenType tt = TWEEN_LINEAR ); diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index 7b4d10dde6..c595223934 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -5,7 +5,6 @@ #ifndef RAGETYPES_H #define RAGETYPES_H -enum GlowMode { GLOW_BRIGHTEN, GLOW_WHITEN }; enum BlendMode { BLEND_NORMAL, BLEND_ADD, BLEND_NO_EFFECT, BLEND_INVALID }; enum CullMode { CULL_BACK, CULL_FRONT, CULL_NONE }; enum ZTestMode { ZTEST_OFF, ZTEST_WRITE_ON_PASS, ZTEST_WRITE_ON_FAIL };