allow any of the lifebar, notefield/player, character, or dancepad to be turned off by the metrics.

(still need to write code to update the lifebar if it is used and the player isn't)
This commit is contained in:
Thad Ward
2003-09-08 17:49:44 +00:00
parent 6d9228f4fa
commit f61cf91601
2 changed files with 84 additions and 80 deletions
+6 -9
View File
@@ -28,19 +28,16 @@ public:
protected:
virtual void Step( float fDelta );
LifeMeterBar m_LifeMeterBar;
LifeMeterBar* m_pLifeMeterBar;
BGAnimation m_Overlay;
Player m_Player;
Model m_mCharacter;
Model m_mDancePad;
bool m_bUsingCharacter;
bool m_bUsingPad;
bool m_bUsingLifeBar;
bool m_bUsingPlayer;
Player* m_pPlayer;
Model* m_pmCharacter;
Model* m_pmDancePad;
int m_iPerfects;
int m_iNumPerfects;
Song* m_pSong;
Song m_Song;
NoteData m_NoteData;
float m_fFakeSecondsIntoSong;
};