blender-sculpt-tools
blender-sculpt-tools copied to clipboard
Update to Blender 2.80 but I'm already using the 2.8 beta?
Here's a picture of my issue:
The Sculpting Tools addon says Upgrade to 2.8x required and is marked with a <!> icon. Is this valid or does it just say that even if you're using the 2.8 beta, like me?
Most of the time i believe that means some parts do work, yet not all.
It actually just means the addon's bl_info version in init.py is not set to (2, 80, 0). It is a simple check to let you know that this addon is not updated for 2.80, and probably won't work as expected. The Blender API has changed significantly with this new version.
Just make your bl_info have a line for blender version:
bl_info = { "name": "Addon Name", "category": "Object", "blender": (2, 80, 0) }
This plugin cannot be enabled for 2.8.1 due to API changes. Could anyone fix that? Thx! https://wiki.blender.org/wiki/Reference/Release_Notes/2.80/Python_API/Addons#Registration