- fbx: add binary reading draft. Started from scratch after my first attempt had design flaws. The binary reader now sits on the lexer stage (really) and generates a (fake) token sequence similar to the text lexer's output - this means most parsing code can go unaffected.

This commit is contained in:
Alexander Gessler
2012-08-09 02:08:12 +02:00
parent 3899fc5257
commit 24ce9495fd
8 changed files with 1738 additions and 1304 deletions

View File

@@ -520,7 +520,7 @@ const Object* LazyObject::Get(bool dieOnError)
}
else if (!strncmp(obtype,"Model",length)) {
// do not load IKEffectors yet
if (strcmp(classtag.c_str(),"IKEffector")) {
if (strcmp(classtag.c_str(),"IKEffector") && strcmp(classtag.c_str(),"FKEffector")) {
object.reset(new Model(id,element,doc,name));
}
}