pass bNeedsNormals into RageCompiledGeometry

This commit is contained in:
Chris Danford
2005-01-14 10:23:22 +00:00
parent c558727bf7
commit 5c79ac4196
8 changed files with 43 additions and 18 deletions
+3 -3
View File
@@ -32,12 +32,12 @@ public:
ModelManager();
~ModelManager();
RageModelGeometry* LoadMilkshapeAscii( CString sFile );
RageModelGeometry* LoadMilkshapeAscii( const CString& sFile, bool bNeedNormals );
void UnloadModel( RageModelGeometry *m );
// void ReloadAll();
bool SetPrefs( ModelManagerPrefs prefs );
ModelManagerPrefs GetPrefs() { return m_Prefs; }
bool SetPrefs( const ModelManagerPrefs& prefs ); // returns true if needs display to be reset
const ModelManagerPrefs& GetPrefs() { return m_Prefs; }
protected: