add name to Actor

This commit is contained in:
Chris Danford
2003-04-12 06:16:12 +00:00
parent ca1b94a043
commit e148806d1b
91 changed files with 555 additions and 786 deletions
+3 -3
View File
@@ -73,8 +73,8 @@ void OptionsCursor::TweenBarWidth( int iNewWidth, float fTweenTime )
m_sprMiddle.BeginTweening( fTweenTime );
m_sprRight.BeginTweening( fTweenTime );
m_sprMiddle.SetTweenZoomX( iNewWidth/(float)fFrameWidth );
m_sprMiddle.SetZoomX( iNewWidth/(float)fFrameWidth );
m_sprLeft.SetTweenX( -iNewWidth/2 - fFrameWidth/2 );
m_sprRight.SetTweenX( +iNewWidth/2 + fFrameWidth/2 );
m_sprLeft.SetX( -iNewWidth/2 - fFrameWidth/2 );
m_sprRight.SetX( +iNewWidth/2 + fFrameWidth/2 );
}