This commit is contained in:
Glenn Maynard
2006-02-27 06:09:08 +00:00
parent 78848a0ca1
commit 0ac58078b4
2 changed files with 0 additions and 9 deletions
-8
View File
@@ -1098,14 +1098,6 @@ void Actor::SetGlobalDiffuseColor( RageColor c )
}
}
void Actor::SetGlobalX( float x )
{
for( unsigned ts = 0; ts < m_Tweens.size(); ++ts )
m_Tweens[ts]->state.pos.x = x;
m_current.pos.x = x;
m_start.pos.x = x;
}
void Actor::SetDiffuseColor( RageColor c )
{
for( int i=0; i<4; i++ )
-1
View File
@@ -166,7 +166,6 @@ public:
void SetFadeBottom( float percent ) { DestTweenState().fade.bottom = percent;}
void SetGlobalDiffuseColor( RageColor c );
void SetGlobalX( float x );
virtual void SetDiffuse( RageColor c ) { for(int i=0; i<4; i++) DestTweenState().diffuse[i] = c; };
virtual void SetDiffuseAlpha( float f ) { for(int i = 0; i < 4; ++i) { RageColor c = GetDiffuses( i ); c.a = f; SetDiffuses( i, c ); } }