Initial support for FBX embedded textures

This commit is contained in:
Otger
2015-11-23 19:49:54 +01:00
parent 916cfb9d53
commit f94bc8d66e
7 changed files with 221 additions and 0 deletions

View File

@@ -180,6 +180,9 @@ const Object* LazyObject::Get(bool dieOnError)
else if (!strncmp(obtype,"LayeredTexture",length)) {
object.reset(new LayeredTexture(id,element,doc,name));
}
else if (!strncmp(obtype,"Video",length)) {
object.reset(new Video(id,element,doc,name));
}
else if (!strncmp(obtype,"AnimationStack",length)) {
object.reset(new AnimationStack(id,element,name,doc));
}