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
- Mono Windows Builds don't produce full log callstacks when generating logs
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
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.