fix tweening when switching receptor note skins

This commit is contained in:
Glenn Maynard
2003-11-28 23:27:12 +00:00
parent c38d156a5b
commit a1a68b5beb
8 changed files with 46 additions and 1 deletions
+6
View File
@@ -77,3 +77,9 @@ void GrayArrowRow::UpdateBars( int iCol )
m_GrayArrow[iCol].UpdateBars();
}
void GrayArrowRow::CopyTweening( const GrayArrowRow &from )
{
for( int c=0; c<m_iNumCols; c++ )
m_GrayArrow[c].CopyTweening( from.m_GrayArrow[c] );
ActorFrame::CopyTweening( from );
}