Added NoteSkin metrics to accomodate Prex NoteSkin

This commit is contained in:
Chris Danford
2002-09-17 23:02:37 +00:00
parent 94e9475440
commit 44baba9fd3
13 changed files with 276 additions and 361 deletions
+5 -3
View File
@@ -35,10 +35,12 @@ void GrayArrowRow::Load( PlayerNumber pn )
for( int c=0; c<m_iNumCols; c++ )
{
m_GrayArrow[c].Load( GAMEMAN->GetPathTo(c, GRAPHIC_RECEPTOR) );
CString sPath = GAMEMAN->GetPathTo(c, "receptor");
m_GrayArrow[c].Load( sPath );
if( m_GrayArrow[c].GetNumStates() != 2 )
throw RageException( "'%s' must have two frames", sPath );
m_GrayArrow[c].SetX( pStyleDef->m_ColumnInfo[pn][c].fXOffset );
}
}
}
void GrayArrowRow::Update( float fDeltaTime )