Users browsing this thread: 1 Guest(s)
Need help with bad weighting error
#2
I looked at the first model. One vert is not in any vertex group.

[Image: HjGlMDa.png]

Compare with the same vert on the other side

[Image: NOQmoJA.png]

So you need to add it to the Jaw_J group with weight 1.0.

Btw to find this vert I selected the mesh in Object mode, ran this from the text editor,

Code:
import bpy
me = bpy.context.object.data
for p in me.polygons: p.select = False
for e in me.edges: e.select = False
for v in me.vertices: v.select = sum(g.weight for g in v.groups) < 0.1

and then switched to edit mode and looked for the selected vert. Dunno if there's a builtin way.
Reply
Thanked by: Nooga


Messages In This Thread
Need help with bad weighting error - by Nooga - 07-27-2021, 02:22 AM
RE: Need help with bad weighting error - by scurest - 07-27-2021, 04:44 AM

Forum Jump: