Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check wether an index group actually has existing bones #18

Merged
merged 3 commits into from
Jan 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Check wether an index group actually has existing bones
  • Loading branch information
EM4Volts committed Jan 7, 2023
commit cce8646ea9230112ea36d16b944ca7f228dbd4b8
2 changes: 1 addition & 1 deletion wmb/exporter/boneSet/boneSet.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self):
for group in obj.vertex_groups:
boneID = getBoneIndexByName("WMB", group.name)
if boneID not in boneMap:
print("Adding ID to boneMap: " + str(boneID))
#print("Adding ID to boneMap: " + str(boneID))
if boneID:
boneMap.append(boneID)

Expand Down