Blender addon to handle some operations on nodes
Go to file
Jonas Holzman fb1caf9174 Cleanup: Move Blender utility functions from `dumper.py` to `utils.py` 2025-03-24 16:11:59 +01:00
.gitea Apply git template and update README 2025-03-19 17:08:30 +01:00
.gitignore Apply git template and update README 2025-03-19 17:08:30 +01:00
README.md Apply git template and update README 2025-03-19 17:08:30 +01:00
__init__.py Add Preferences class, empty for now 2025-03-20 11:49:26 +01:00
dumper.py Cleanup: Move Blender utility functions from `dumper.py` to `utils.py` 2025-03-24 16:11:59 +01:00
formats.py Cleanup: Better perator names and description, moved format logic to its own file 2025-03-24 15:48:52 +01:00
node_utils.py Cleanup: Move files out of `core/` 2025-03-24 15:57:29 +01:00
operators.py Cleanup: Move files out of `core/` 2025-03-24 15:57:29 +01:00
pack_nodes.py Cleanup: Move files out of `core/` 2025-03-24 15:57:29 +01:00
preferences.py Add Preferences class, empty for now 2025-03-20 11:49:26 +01:00
ui.py Further Operators / UI Improvements 2025-03-20 11:34:21 +01:00
utils.py Cleanup: Move Blender utility functions from `dumper.py` to `utils.py` 2025-03-24 16:11:59 +01:00

README.md

Node Kit

Blender Node Toolkit - Collection of node-related tools (copy-pasting, packing, updating, etc..) all accessible from a simple menu.

Development

Cloning

  1. Create a development directory, such as:
    /home/<USER>/dev
    
  2. Clone the repository with the following command:
    git clone ssh://git@git.autourdeminuit.com:222/autour_de_minuit/node_kit.git
    

Branches

The main branch is master. It is a protected branch that only user with the Owner role can push to.

To contribute to this repository, you will have to create you own development branch, and then create a Pull Request. After at least one validation, you will be able to merge your changes.

Branches should be named in kebab-case, and can be grouped using /.

Examples: bug/fix-crash-on-startup, bug/fix-font, feature/new-colors, theme-logic-refactor, etc...