SelectGroup animations converted to commands

ScreenStage animations converted to TransitionBGAnimations
Changed all Stage BitmapTexts to Sprites
This commit is contained in:
Chris Danford
2003-03-10 00:16:49 +00:00
parent d336032b6d
commit 080a92450c
28 changed files with 961 additions and 783 deletions
+13
View File
@@ -46,6 +46,19 @@ bool RageTextureID::operator<(const RageTextureID &rhs) const
return false;
}
bool RageTextureID::operator==(const RageTextureID &rhs) const
{
return
filename == rhs.filename &&
iMaxSize == rhs.iMaxSize &&
iMipMaps == rhs.iMipMaps &&
iAlphaBits == rhs.iAlphaBits &&
iColorDepth == rhs.iColorDepth &&
bDither == rhs.bDither &&
bStretch == rhs.bStretch &&
bHotPinkColorKey == rhs.bHotPinkColorKey;
}
RageTexture::RageTexture( RageTextureID name ):
m_ID(name)