pKrime/brignet

Error with LoadSkeleton

gSingh-maker opened this issue · 2 comments

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!

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!

Thank You !