with Weave project files 'weave_start.py' and 'weave_done.py' :
running scripts on Blender v4.0.2 causes:
File ".../weave_done.py",
line 307, in create_emissive_material
KeyError: 'bpy_prop_collection[key]: key "Emission" not found'
code currently reads:
307 material.node_tree.nodes["Principled BSDF"].inputs["Emission"].default_value = color
changing the input name to "Emission Color" fixes this error
307 material.node_tree.nodes["Principled BSDF"].inputs["Emission Color"].default_value = color
with Weave project files 'weave_start.py' and 'weave_done.py' :
running scripts on Blender v4.0.2 causes:
code currently reads:
changing the input name to "Emission Color" fixes this error