Added LineCount util (.Net runtime required), and changed "gameplay demonstration" graphic

This commit is contained in:
Chris Danford
2002-09-10 21:26:27 +00:00
parent 223556b026
commit e645322d01
3 changed files with 9 additions and 9 deletions
BIN
View File
Binary file not shown.
+7 -7
View File
@@ -356,14 +356,14 @@ ScreenGameplay::ScreenGameplay()
if( GAMESTATE->m_bDemonstration ) if( GAMESTATE->m_bDemonstration )
{ {
m_quadDemonstrationBox.SetDiffuse( D3DXCOLOR(0,0,0,0.7f) ); m_sprDemonstrationOverlay.Load( THEME->GetPathTo("Graphics","gameplay demonstration overlay") );
m_quadDemonstrationBox.StretchTo( CRect(SCREEN_LEFT, int(CENTER_Y-60), SCREEN_RIGHT, int(CENTER_Y+60)) ); m_sprDemonstrationOverlay.SetXY( CENTER_X, CENTER_Y );
this->AddChild( &m_quadDemonstrationBox ); this->AddChild( &m_sprDemonstrationOverlay );
m_sprDemonstration.Load( THEME->GetPathTo("Graphics","gameplay demonstration") ); m_sprDemonstrationBlink.Load( THEME->GetPathTo("Graphics","gameplay demonstration blink") );
m_sprDemonstration.SetXY( CENTER_X, CENTER_Y ); m_sprDemonstrationBlink.SetXY( CENTER_X, CENTER_Y );
m_sprDemonstration.SetEffectBlinking(); m_sprDemonstrationBlink.SetEffectBlinking();
this->AddChild( &m_sprDemonstration ); this->AddChild( &m_sprDemonstrationBlink );
m_Fade.OpenWipingRight(); m_Fade.OpenWipingRight();
} }
+2 -2
View File
@@ -120,8 +120,8 @@ private:
Sprite m_sprToasty; // easter egg Sprite m_sprToasty; // easter egg
Quad m_quadDemonstrationBox; Sprite m_sprDemonstrationOverlay;
Sprite m_sprDemonstration; Sprite m_sprDemonstrationBlink;
RandomSample m_soundFail; RandomSample m_soundFail;
RandomSample m_soundOniDie; RandomSample m_soundOniDie;