- fbx: add ImportSettings to keep track of fbx-specific import settings. The settings are generated by the importer instance and injected into parser and DOM.

This commit is contained in:
Alexander Gessler
2012-06-28 19:16:14 +02:00
parent 6c985b9960
commit 05bc8ab684
6 changed files with 101 additions and 24 deletions

View File

@@ -158,7 +158,7 @@ void FBXImporter::InternReadFile( const std::string& pFile,
Parser parser(tokens);
// take the raw parse-tree and convert it to a FBX DOM
Document doc(parser);
Document doc(parser,settings);
}
catch(...) {
std::for_each(tokens.begin(),tokens.end(),Util::delete_fun<Token>());