Actor tween cleanup

Actor scipting with Command()
modularizing menu widgets into "ModeSelector"s
move animations into metrics
This commit is contained in:
Chris Danford
2003-03-02 01:43:33 +00:00
parent 0b9448cf66
commit a696414cac
62 changed files with 1768 additions and 1272 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ void Banner::SetScrolling( bool bScroll, float Percent)
void Banner::LoadFromSong( Song* pSong ) // NULL means no song
{
Sprite::TurnShadowOff();
Sprite::EnableShadow( false );
if( pSong == NULL ) LoadFallback();
else if( pSong->HasBanner() ) Load( pSong->GetBannerPath() );
@@ -92,7 +92,7 @@ void Banner::LoadFromGroup( CString sGroupName )
void Banner::LoadFromCourse( Course* pCourse ) // NULL means no course
{
Sprite::TurnShadowOff();
Sprite::EnableShadow( false );
if( pCourse == NULL ) LoadFallback();
else if( pCourse->m_sBannerPath != "" ) Load( pCourse->m_sBannerPath );