https://github.com/razcore-rad/blender-addon-template
Opinionated boilerplate code for Blender Addon development.
https://github.com/razcore-rad/blender-addon-template
blender blender-addon blender-plugin boilerplate python template
Last synced: 19 days ago
JSON representation
Opinionated boilerplate code for Blender Addon development.
- Host: GitHub
- URL: https://github.com/razcore-rad/blender-addon-template
- Owner: razcore-rad
- License: mit
- Created: 2024-02-20T09:08:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T07:01:41.000Z (over 2 years ago)
- Last Synced: 2025-01-21T05:11:15.438Z (over 1 year ago)
- Topics: blender, blender-addon, blender-plugin, boilerplate, python, template
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blender Addon Template
Minimal and opinionated template code for Blender Addon development.
## Structure
```sh
addon
├── dependencies.py # `ensure_dependencies()` utility function that uses `pip` & `requirements.txt` to install packages into the `addon/dependencies` local folder
├── __init__.py # addon entry point
├── paths.py # defines `ADDON_PATH`, a `Path` object that points to the current addon path folder
├── requirements.txt # see `dependencies.py` comment
└── utils.py # defines `[un]register(mods: list[types.ModuleType]) -> Node` helper methods, see the contents of `__info__.py` for further comments
```