allow calling m_pNoteField->CacheAllUsedNoteSkins for Player
This commit is contained in:
@@ -1837,6 +1837,12 @@ void Player::FadeToFail()
|
|||||||
m_pCombo->SetCombo( 0, 0 );
|
m_pCombo->SetCombo( 0, 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Player::CacheAllUsedNoteSkins()
|
||||||
|
{
|
||||||
|
if( m_pNoteField )
|
||||||
|
m_pNoteField->CacheAllUsedNoteSkins();
|
||||||
|
}
|
||||||
|
|
||||||
bool Player::IsPlayingBeginner() const
|
bool Player::IsPlayingBeginner() const
|
||||||
{
|
{
|
||||||
if( m_pPlayerStageStats != NULL && !m_pPlayerStageStats->vpPossibleSteps.empty() )
|
if( m_pPlayerStageStats != NULL && !m_pPlayerStageStats->vpPossibleSteps.empty() )
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ public:
|
|||||||
void Step( int col, const RageTimer &tm, bool bHeld = false );
|
void Step( int col, const RageTimer &tm, bool bHeld = false );
|
||||||
void RandomizeNotes( int iNoteRow );
|
void RandomizeNotes( int iNoteRow );
|
||||||
void FadeToFail();
|
void FadeToFail();
|
||||||
|
void CacheAllUsedNoteSkins();
|
||||||
TapNoteScore GetLastTapNoteScore() const { return m_LastTapNoteScore; }
|
TapNoteScore GetLastTapNoteScore() const { return m_LastTapNoteScore; }
|
||||||
void ApplyWaitingTransforms();
|
void ApplyWaitingTransforms();
|
||||||
void SetPaused( bool bPaused ) { m_bPaused = bPaused; }
|
void SetPaused( bool bPaused ) { m_bPaused = bPaused; }
|
||||||
|
|||||||
Reference in New Issue
Block a user