pKrime / brignet

Automatic rigging using neural network from RigNet
GNU General Public License v3.0
418 stars 39 forks source link

Error with LoadSkeleton #11

Closed gSingh-maker closed 3 years ago

gSingh-maker commented 3 years ago

I get the following error while trying to run the "Load RigNet Character".

Capture

RigNet is working fine. I want to combine the .obj with .txt file. My system does not have GPU.(Windows 10)

Online solutions suggested to have Blender in "Object mode", instead of "Edit mode". But mine is in "Object mode" only. The Blender version is 2.92.

Thanks!

pKrime commented 3 years ago

Hi, proabably the import operator has changed in blender 2.92 and it doesn't accept the global_clight_size parameter anymore. I have removed it from the script and now it should work.

You can either download the addon again, or edit the file yourself and change the line 47 of loadskeleton.py from

global_clight_size=0, axis_forward='-Z', axis_up='Y')

to

axis_forward='-Z', axis_up='Y')

cheers!

gSingh-maker commented 3 years ago

Thank You !