Explicit handling of an FBXExportNode edge-case.

This commit is contained in:
Tommy
2018-03-28 16:09:07 +02:00
parent 00277d93f2
commit aadb413fc0
3 changed files with 9 additions and 11 deletions

View File

@@ -168,7 +168,7 @@ void FBX::Node::Dump(Assimp::StreamWriterLE &s)
DumpChildren(s);
// finish, filling in end offset placeholder
End(s, !children.empty());
End(s, force_has_children || !children.empty());
}
void FBX::Node::Begin(Assimp::StreamWriterLE &s)