fixed ugly judge/combo tween on fast songs.

This commit is contained in:
Chris Danford
2002-09-15 19:31:33 +00:00
parent fdb09fc810
commit c311a87be9
2 changed files with 12 additions and 4 deletions
+10 -4
View File
@@ -2,10 +2,20 @@
Fix Fix
///////////////////////// /////////////////////////
> We also throw when we get a difficulty we don't know about.
> LifeMeterBattery::Refresh wants "x", but the font being used..
Like when playing MAX300, how the judgement "pulsing" goofs up?
freezes are locked until NG
the CDTitles DWI style arent being read anymore. the CDTitles DWI style arent being read anymore.
faster IniFile (with std::map?) faster IniFile (with std::map?)
flag for use hold head
fix movie texture crash fix movie texture crash
The "groove bar" reports at the results screen is broken. The "groove bar" reports at the results screen is broken.
@@ -40,8 +50,6 @@ slower eval bar tween
add turns to editor add turns to editor
sample pop
fix screwed up scroll bar fix screwed up scroll bar
send disc to Penny Arcade send disc to Penny Arcade
@@ -54,8 +62,6 @@ lyrics
team seattle link team seattle link
flag for use hold head
////////////////////// //////////////////////
Animachanic suggestions: Animachanic suggestions:
////////////////////// //////////////////////
+2
View File
@@ -468,11 +468,13 @@ void Player::OnRowDestroyed( int col, int iIndexThatWasSteppedOn )
case TNS_GOOD: fStartZoomX = g_fJudgeGoodZoomX; fStartZoomY = g_fJudgeGoodZoomY; break; case TNS_GOOD: fStartZoomX = g_fJudgeGoodZoomX; fStartZoomY = g_fJudgeGoodZoomY; break;
case TNS_BOO: fStartZoomX = g_fJudgeBooZoomX; fStartZoomY = g_fJudgeBooZoomY; break; case TNS_BOO: fStartZoomX = g_fJudgeBooZoomX; fStartZoomY = g_fJudgeBooZoomY; break;
} }
m_frameJudgement.StopTweening();
m_frameJudgement.SetZoomX( fStartZoomX ); m_frameJudgement.SetZoomX( fStartZoomX );
m_frameJudgement.SetZoomY( fStartZoomY ); m_frameJudgement.SetZoomY( fStartZoomY );
m_frameJudgement.BeginTweening( g_fComboJudgeTweenSeconds ); m_frameJudgement.BeginTweening( g_fComboJudgeTweenSeconds );
m_frameJudgement.SetTweenZoom( 1 ); m_frameJudgement.SetTweenZoom( 1 );
m_frameCombo.StopTweening();
m_frameCombo.SetZoomX( fStartZoomX ); m_frameCombo.SetZoomX( fStartZoomX );
m_frameCombo.SetZoomY( fStartZoomY ); m_frameCombo.SetZoomY( fStartZoomY );
m_frameCombo.BeginTweening( g_fComboJudgeTweenSeconds ); m_frameCombo.BeginTweening( g_fComboJudgeTweenSeconds );