This commit is contained in:
Glenn Maynard
2006-01-24 00:24:15 +00:00
parent 11af21d11b
commit 6fecb35dfa
+2 -4
View File
@@ -43,9 +43,9 @@ void ReceptorArrow::Update( float fDeltaTime )
void ReceptorArrow::DrawPrimitives()
{
if( m_bWasPressed && !m_bIsPressed )
{
m_pReceptor->PlayCommand( "Lift" );
}
else if( !m_bWasPressed && m_bIsPressed )
m_pReceptor->PlayCommand( "Press" );
m_bWasPressed = m_bIsPressed;
m_bIsPressed = false; // it may get turned back on next update
@@ -59,8 +59,6 @@ void ReceptorArrow::Step( TapNoteScore score )
RString sJudge = TapNoteScoreToString( score );
m_pReceptor->PlayCommand( Capitalize(sJudge) );
m_pReceptor->PlayCommand( "Press" );
}
/*