- fbx: ignore IKEffector nodes.
parent
44259f0c23
commit
bb8e8c6673
|
@ -519,7 +519,10 @@ const Object* LazyObject::Get(bool dieOnError)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!strncmp(obtype,"Model",length)) {
|
else if (!strncmp(obtype,"Model",length)) {
|
||||||
object.reset(new Model(id,element,doc,name));
|
// do not load IKEffectors yet
|
||||||
|
if (strcmp(classtag.c_str(),"IKEffector")) {
|
||||||
|
object.reset(new Model(id,element,doc,name));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (!strncmp(obtype,"Material",length)) {
|
else if (!strncmp(obtype,"Material",length)) {
|
||||||
object.reset(new Material(id,element,doc,name));
|
object.reset(new Material(id,element,doc,name));
|
||||||
|
|
Loading…
Reference in New Issue