Skip to main content
Endertainer007
Participant
July 29, 2021
Question

Mixamo Blender Addon can't create control rig in 2.93

  • July 29, 2021
  • 4 replies
  • 6471 views

So I got the Mixamo addon installed in Blender 2.93. But somehow it can't create the control rig. It just spits out an error.

Though, the addon does work in 2.92. I'm guessing that it's because the addon was made in 2.92 or below.

If so, then the addon needs to be updated to 2.93. Also, right now I only got issues with the generate control rig. When I use the rig I created in 2.92 to 2.93, the rig still works. I also added an animation from Mixamo and it does work.

4 replies

Participant
October 9, 2021

me too .. same problem !!

schroef
Inspiring
December 1, 2021

i noticed i pasted the code with a tab to much. In the first for loop showing

for collect cs_grp.users_collection:

This is the corrected code

# assign to new collection
assigned_collections = []
for collec in cs_grp.users_collection:
    if not collec in obj.users_collection:
        collec.objects.link(obj)
        assigned_collections.append(collec)

But check for the new version on the website. i just noticed the version is now already at 1.10.18

https://substance3d.adobe.com/plugins/mixamo-in-blender

Participant
September 21, 2021

Hi! So I was having this exact same issue and the code snippet mentioned above didn't help me (and also made my addon disappear as you mentioned). And I couldn't find help anywhere else as it seems not a lot of people are having this problem. So what I did was "File > Default > Load Factory Settings" under the assumption that maybe another addon was causing the issue and BINGO! It works like a charm now. Not sure which addon is causing the issue and maybe I'll do trial by error eventually, but as of now this works (for me anyway).

 

So I created the rig, saved the file and then just re opened the file in my regular Blender setup. Luckily, "Load Default Settings doesn't completley remove all your preferences and installed addons. It only does it for your current session. Which I only just now realized lol

Participating Frequently
August 31, 2022

Thanks. Totally fixed my issue.

Participant
September 9, 2021

Fixed it by adding an animation Action named Armature|mixamo.com|Layer0 to my armature.

schroef
Inspiring
July 30, 2021

I have seen this same error. For me it helped reimporting the FBX from scratch. Ive also update the code so it does work with the file you already have setup.

 

If you paste the code below at line 89 in the file lib > objects.py
This is how that lines should look, it starts at line 86

# assign to new collection
assigned_collections = []
    for collec in cs_grp.users_collection:
        if not collec in obj.users_collection:
            collec.objects.link(obj)
            assigned_collections.append(collec)

 

When i added that line 'if not collec in obj.users_collection:' it did setup the rig properly

Endertainer007
Participant
July 30, 2021

Ok. So I add it. But now the addon won't show up.

Here's how the code looks:

]

Endertainer007
Participant
July 30, 2021

Oops, sorry. Wrong picture.

Here's the right one: