dart_fbx
dart_fbx copied to clipboard
Open Source FBX decoder for Dart
You assume that the UvIndices is in order but not, you have to handle that and order manually in void _loadUvs(FbxElement e) { //fbx_mesh.dart add this ``` //TODO UVIndex else...
in line 290 dstModel.connectToProperty(attr, srcModel); fix is: try { dstModel.connectToProperty(attr, srcModel); } catch (e) { }
in the **FbxMesh** class I found an error: **in lne 178:** `final refGlobalInitPos = pose.getMatrix(meshNode);` when the pose is null, you get an exception ``` var refGlobalInitPos; if (pose ==...