- rough support for multi-part player models.

SceneCombiner
 - added support for cross-attachments of nodes in the whole graph

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@345 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2009-02-12 22:14:35 +00:00
parent e6758ce923
commit d70c092b71
6 changed files with 232 additions and 74 deletions

View File

@@ -153,8 +153,10 @@ struct LoadRequest
, refCnt (1)
, scene (NULL)
, loaded (false)
, map (*_map)
{}
{
if (_map)
map = *_map;
}
const std::string file;
unsigned int flags;
@@ -163,8 +165,9 @@ struct LoadRequest
bool loaded;
BatchLoader::PropertyMap map;
bool operator== (const std::string& f)
{return file == f;}
bool operator== (const std::string& f) {
return file == f;
}
};
// ------------------------------------------------------------------------------------------------