remove GlowMode
This commit is contained in:
@@ -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 )
|
||||
|
||||
@@ -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 );
|
||||
|
||||
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user