Blender Python addon dev
My first project is making addon in Blender.
Qiuck review.
There are tree major Blender custom classes: Property / Operation / UI.
- Blender Properties => reg as Class and save in Scene object
- UI panel( Blender class), read /write context scene properties / execute operations
- Operation - make some action
##Good resources to start:
Use external IDE to write code
auto complete for blender classes
reload your code in Blender
- make simlink of your code to the Blender.../addons/you-addon
- use importlib
Writing code workflow: