Search Issue Tracker
By Design
Votes
0
Found in
Issue ID
1243268
Regression
No
Incorrect import when a skinned mesh has vertices unassigned
When importing fbx with a skinned mesh that has vertices not assigned to any joint, they get arbitrarily get set to 1.
1. Open 'UnassignedVertices.fbx' in Maya/Max/Blender etc.
2. Play animation and notice that some vertices are unaffected by bones
3. Import fbx in Unity, Play animation
Expected result: Animation plays the same, unassigned vertices are supported
Actual results: Animation is incorrect, but you get a warning:
'ImportFBX Warnings: Mesh 'XYX' has # (out of #) vertices with no weight and bone assigned (they will be assigned to bone #0 with weight 1).
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Channel remapping dropdown in the Terrain Layer does not open when clicked on the title
- The Editor freezes indefinitely when a large number of elements are entered in the Subgraphs or Categories lists
- Some Visual Effects package Assets links to documentation are not working
- Heatmap asset’s documentation button in the Inspector window leads to “Sorry... that page seems to be missing!” page when clicked
- Crash on MonoBehaviour::CallMethodIfAvailable when performing various actions
Resolution Note:
For runtime optimizations we either skin the complete mesh or nothing at all. To do skinning on the complete mesh we need a weight and a bone for every vertex. When a vertex does not have a weight and a bone assigned we assign one for the user - as shown by the warning message. It is impossible to guess the correct bone that follows the users intend. The first bone is a best guess that I imagine solves it for most cases. But it is really something that should be authored by the user.