unused now
This commit is contained in:
@@ -25,7 +25,6 @@ enum KeepAliveType // for use with the metric above
|
|||||||
{
|
{
|
||||||
KEEP_ALIVE_TYPE_MAX = 0,
|
KEEP_ALIVE_TYPE_MAX = 0,
|
||||||
KEEP_ALIVE_TYPE_5TH,
|
KEEP_ALIVE_TYPE_5TH,
|
||||||
KEEP_ALIVE_TYPE_HIDDEN, //disable drawing of the keep alive transition (for transitioning to the summary score screen)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -44,11 +43,6 @@ TransitionKeepAlive::TransitionKeepAlive()
|
|||||||
m_sprLogo.SetXY( CENTER_X, CENTER_Y );
|
m_sprLogo.SetXY( CENTER_X, CENTER_Y );
|
||||||
}
|
}
|
||||||
|
|
||||||
void TransitionKeepAlive::SetHidden()
|
|
||||||
{
|
|
||||||
g_KeepAliveType = (KeepAliveType)KEEP_ALIVE_TYPE_HIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
void TransitionKeepAlive::Update( float fDeltaTime )
|
void TransitionKeepAlive::Update( float fDeltaTime )
|
||||||
{
|
{
|
||||||
// hack: Smooth out the big hickups.
|
// hack: Smooth out the big hickups.
|
||||||
@@ -63,8 +57,6 @@ void TransitionKeepAlive::DrawPrimitives()
|
|||||||
// draw keep alive graphic
|
// draw keep alive graphic
|
||||||
switch( g_KeepAliveType )
|
switch( g_KeepAliveType )
|
||||||
{
|
{
|
||||||
case KEEP_ALIVE_TYPE_HIDDEN: //draw nothing
|
|
||||||
break; //for last transition (to final score summary screen)
|
|
||||||
case KEEP_ALIVE_TYPE_MAX:
|
case KEEP_ALIVE_TYPE_MAX:
|
||||||
{
|
{
|
||||||
float fPercentClosed = 1 - this->GetPercentageOpen();
|
float fPercentClosed = 1 - this->GetPercentageOpen();
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ public:
|
|||||||
virtual void OpenWipingLeft( ScreenMessage send_when_done = SM_None );
|
virtual void OpenWipingLeft( ScreenMessage send_when_done = SM_None );
|
||||||
virtual void CloseWipingRight(ScreenMessage send_when_done = SM_None );
|
virtual void CloseWipingRight(ScreenMessage send_when_done = SM_None );
|
||||||
virtual void CloseWipingLeft( ScreenMessage send_when_done = SM_None );
|
virtual void CloseWipingLeft( ScreenMessage send_when_done = SM_None );
|
||||||
virtual void SetHidden();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Sprite m_sprLogo;
|
Sprite m_sprLogo;
|
||||||
|
|||||||
Reference in New Issue
Block a user