├── .gitignore ├── LICENSE ├── README.SAMPLE.md ├── README.md ├── docs_support └── banner.png └── src ├── __init__.py ├── lib ├── addon.py ├── pkginfo.py └── util.py ├── menu ├── node_editor_header.py └── object_context.py ├── operator ├── a_simple_operator.py ├── an_operator.py └── an_operator_with_a_uilist.py └── panel ├── n_panel.py ├── object_panel.py └── preferences.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.SAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/README.SAMPLE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/README.md -------------------------------------------------------------------------------- /docs_support/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/docs_support/banner.png -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/lib/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/lib/addon.py -------------------------------------------------------------------------------- /src/lib/pkginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/lib/pkginfo.py -------------------------------------------------------------------------------- /src/lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/lib/util.py -------------------------------------------------------------------------------- /src/menu/node_editor_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/menu/node_editor_header.py -------------------------------------------------------------------------------- /src/menu/object_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/menu/object_context.py -------------------------------------------------------------------------------- /src/operator/a_simple_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/operator/a_simple_operator.py -------------------------------------------------------------------------------- /src/operator/an_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/operator/an_operator.py -------------------------------------------------------------------------------- /src/operator/an_operator_with_a_uilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/operator/an_operator_with_a_uilist.py -------------------------------------------------------------------------------- /src/panel/n_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/panel/n_panel.py -------------------------------------------------------------------------------- /src/panel/object_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/panel/object_panel.py -------------------------------------------------------------------------------- /src/panel/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFLEB/blender_addon_template/HEAD/src/panel/preferences.py --------------------------------------------------------------------------------