half-finished codes, options icons, and two new modifiers.

This commit is contained in:
Chris Danford
2002-09-02 21:59:58 +00:00
parent d7e6f59b3b
commit 7d4cf73000
87 changed files with 1313 additions and 1109 deletions
+3 -3
View File
@@ -24,14 +24,14 @@ SnapDisplay::SnapDisplay()
for( int i=0; i<2; i++ )
{
m_sprIndicators[i].Load( THEME->GetPathTo("Graphics","edit snap indicator") );
this->AddSubActor( &m_sprIndicators[i] );
this->AddChild( &m_sprIndicators[i] );
}
m_NoteType = NOTE_TYPE_4TH;
D3DXCOLOR color = NoteTypeToColor( m_NoteType );
for( i=0; i<2; i++ )
m_sprIndicators[i].SetDiffuseColor( color );
m_sprIndicators[i].SetDiffuse( color );
m_iNumCols = 0;
}
@@ -74,6 +74,6 @@ void SnapDisplay::SnapModeChanged()
for( int i=0; i<2; i++ )
{
m_sprIndicators[i].BeginTweening( 0.3f );
m_sprIndicators[i].SetTweenDiffuseColor( color );
m_sprIndicators[i].SetTweenDiffuse( color );
}
}