Daz to Blender Bridge not working on new Pc
Hi, i bought me a new ( better) Pc and install evrything, like on my old Pc. But if i click "import new Genesis Figure" in Blender i got this error message:
Python: Traceback (most recent call last):
File"C:\Users\blabl\AppData\Roaming\Blender Foundation\Blender\2.92\scripts\addons\DTB\DtbOperators.py". line 275, in execute
self.import_one(fbx_adr)
File"C:\Users\blabl\AppData\Roaming\Blender Foundation\Blender\2.92\scripts\addons\DTB\DtbOperators.py". line 147, in import_one
pose = Poses.Posing(FIG")
File"C:\Users\blabl\AppData\Roaming\Blender Foundation\Blender\2.92\scripts\addons\DTB\DtbOperators.py". line 299, in get_pose_data
for key in data:
RuntimeError: dictionary changed size during iteration
location: <unkown loacation>:-1
I tihnk the problem is that the blender addon searching in the wrong location. I found in a other Discussion how somebody set the location manually, but in linux. https://www.daz3d.com/forums/discussion/comment/5880226/ I found the data i need to change, in the place thats written in the error message. The problem is the place in the data looks diffrent for me:
def getRootPath():
global root
if root == "":
hdir = os.path.expanduser('~')
hdir = os.path.join(hdir, "Documents", "DAZ 3D", "Bridges", "Daz To Blender", "Exports")
print("Files Should be Exporting to : {0}".format(hdir))
if os.path.exists(hdir):
root = hdir
else:
root = ""
return root
somebody have a idea where to write the right location?