half-finished codes, options icons, and two new modifiers.
This commit is contained in:
@@ -23,7 +23,7 @@ MusicList::MusicList()
|
||||
m_textTitles[i].SetVertAlign( Actor::align_top );
|
||||
m_textTitles[i].SetZoom( 0.5f );
|
||||
m_textTitles[i].SetShadowLength( 2 );
|
||||
this->AddSubActor( &m_textTitles[i] );
|
||||
this->AddChild( &m_textTitles[i] );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,10 +84,10 @@ void MusicList::TweenOnScreen()
|
||||
{
|
||||
for( int i=0; i<TITLES_COLUMNS; i++ )
|
||||
{
|
||||
m_textTitles[i].SetDiffuseColor( D3DXCOLOR(1,1,1,0) );
|
||||
m_textTitles[i].BeginTweeningQueued( 0.5f );
|
||||
m_textTitles[i].BeginTweeningQueued( 0.5f );
|
||||
m_textTitles[i].SetTweenDiffuseColor( D3DXCOLOR(1,1,1,1) );
|
||||
m_textTitles[i].SetDiffuse( D3DXCOLOR(1,1,1,0) );
|
||||
m_textTitles[i].BeginTweening( 0.5f );
|
||||
m_textTitles[i].BeginTweening( 0.5f );
|
||||
m_textTitles[i].SetTweenDiffuse( D3DXCOLOR(1,1,1,1) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,8 +95,8 @@ void MusicList::TweenOffScreen()
|
||||
{
|
||||
for( int i=0; i<TITLES_COLUMNS; i++ )
|
||||
{
|
||||
m_textTitles[i].BeginTweeningQueued( 0.7f );
|
||||
m_textTitles[i].BeginTweeningQueued( 0.5f );
|
||||
m_textTitles[i].SetTweenDiffuseColor( D3DXCOLOR(1,1,1,0) );
|
||||
m_textTitles[i].BeginTweening( 0.7f );
|
||||
m_textTitles[i].BeginTweening( 0.5f );
|
||||
m_textTitles[i].SetTweenDiffuse( D3DXCOLOR(1,1,1,0) );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user