- fbx: add support for reading Null node attributes.

This commit is contained in:
Alexander Gessler
2012-08-25 20:12:53 +02:00
parent 4921114c7d
commit eed3cebc18
3 changed files with 34 additions and 1 deletions

View File

@@ -149,6 +149,9 @@ const Object* LazyObject::Get(bool dieOnError)
else if (!strcmp(classtag.c_str(),"Light")) {
object.reset(new Light(id,element,doc,name));
}
else if (!strcmp(classtag.c_str(),"Null")) {
object.reset(new Null(id,element,doc,name));
}
}
else if (!strncmp(obtype,"Deformer",length)) {
if (!strcmp(classtag.c_str(),"Cluster")) {