-
Notifications
You must be signed in to change notification settings - Fork 17
Vertex Group Flip L R
Bad Dog edited this page Nov 15, 2022
·
1 revision
""" VertexGroupFlipLR
Change names of vertex groups ending in ".L" to ".R" and vice vesa
"""
import bpy
v_groups = bpy.context.active_object.vertex_groups
for name in v_groups.keys():
if name[-2:] == '.L':
v_groups[name].name = name[:-2] + ".R"
elif name[-2:] == '.R':
v_groups[name].name = name[:-2] + ".L"
print('done')
Useful Python Scripts
- Remove unused vertex groups from shape
- Vertex Group Flip L-R
- Flip Shape Keys Left-Right
- Select Shape Key Vertices
Notes on tools