no message

This commit is contained in:
Chris Danford
2002-04-01 02:04:43 +00:00
parent d641cb4ae3
commit 3a73bfc354
19 changed files with 2793 additions and 159 deletions
+1 -2
View File
@@ -19,13 +19,12 @@ const float GRAY_ARROW_POP_UP_TIME = 0.3f;
GrayArrow::GrayArrow()
{
Load( THEME->GetPathTo(GRAPHIC_GRAY_ARROW) );
StopAnimating();
}
void GrayArrow::SetBeat( const float fSongBeat )
{
SetState( fmod(fSongBeat,1)<0.25 ? 1 : 0 );
SetState( fmod(fSongBeat,1) * Sprite::GetNumStates() );
}
void GrayArrow::Step()