remove; use the controls in ActorFrame instead

This commit is contained in:
Glenn Maynard
2005-07-07 01:01:37 +00:00
parent 5813b65b72
commit c1e0310d68
2 changed files with 0 additions and 18 deletions
-13
View File
@@ -57,9 +57,6 @@ static RageTimer g_StartedLoadingAt(RageZeroTimer);
REGISTER_SCREEN_CLASS( ScreenSelectMusic );
ScreenSelectMusic::ScreenSelectMusic( CString sClassName ) : ScreenWithMenuElements( sClassName ),
FOV( m_sName, "FOV" ),
FOV_CENTER_X( m_sName, "FOVCenterX" ),
FOV_CENTER_Y( m_sName, "FOVCenterY" ),
BANNER_WIDTH( m_sName, "BannerWidth" ),
BANNER_HEIGHT( m_sName, "BannerHeight" ),
SONG_OPTIONS_EXTRA_COMMAND( m_sName, "SongOptionsExtraCommand" ),
@@ -343,16 +340,6 @@ ScreenSelectMusic::~ScreenSelectMusic()
}
void ScreenSelectMusic::DrawPrimitives()
{
DISPLAY->CameraPushMatrix();
DISPLAY->LoadMenuPerspective( FOV, FOV_CENTER_X, FOV_CENTER_Y );
Screen::DrawPrimitives();
DISPLAY->CameraPopMatrix();
}
void ScreenSelectMusic::TweenSongPartsOnScreen( bool Initial )
{
m_GrooveRadar.StopTweening();
-5
View File
@@ -32,8 +32,6 @@ public:
virtual ~ScreenSelectMusic();
virtual void Init();
virtual void DrawPrimitives();
virtual void Update( float fDeltaTime );
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
@@ -70,9 +68,6 @@ protected:
vector<Trail*> m_vpTrails;
int m_iSelection[NUM_PLAYERS];
ThemeMetric<float> FOV;
ThemeMetric<float> FOV_CENTER_X;
ThemeMetric<float> FOV_CENTER_Y;
ThemeMetric<float> BANNER_WIDTH;
ThemeMetric<float> BANNER_HEIGHT;
ThemeMetric<apActorCommands> SONG_OPTIONS_EXTRA_COMMAND;