remove GlowMode

This commit is contained in:
Glenn Maynard
2005-01-08 22:40:42 +00:00
parent 8a29cc0459
commit d58fa5178c
3 changed files with 0 additions and 5 deletions
-1
View File
@@ -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 )
-3
View File
@@ -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 );
-1
View File
@@ -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 };