Not sure if you are aware, but there seems to be a recurring issue with the Layer Management add-on. Every time I disable and enable it again I get an error. I looked into it and it seems the only issue it had was with the "unregister" function.
This is straight from the script: def unregister(): bpy.utils.register_module(__name__)
This is how I fixed the issue: def unregister(): bpy.utils.unregister_module(__name__)
As you can see, the script was trying to actually register the module again instead of unregistering it. So I just thought I'd let you know.
Hi Alfonso,
RispondiEliminaNot sure if you are aware, but there seems to be a recurring issue with the Layer Management add-on. Every time I disable and enable it again I get an error. I looked into it and it seems the only issue it had was with the "unregister" function.
This is straight from the script:
def unregister():
bpy.utils.register_module(__name__)
This is how I fixed the issue:
def unregister():
bpy.utils.unregister_module(__name__)
As you can see, the script was trying to actually register the module again instead of unregistering it.
So I just thought I'd let you know.
Thanks for the great script!