├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── ambidextrous_operators.py ├── assets └── FINALIZE_SCRIPT.py ├── blender_manifest.toml ├── main.py ├── new readme.md ├── operators.py ├── panel.py └── release notes.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/__init__.py -------------------------------------------------------------------------------- /ambidextrous_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/ambidextrous_operators.py -------------------------------------------------------------------------------- /assets/FINALIZE_SCRIPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/assets/FINALIZE_SCRIPT.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/main.py -------------------------------------------------------------------------------- /new readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/new readme.md -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/operators.py -------------------------------------------------------------------------------- /panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/panel.py -------------------------------------------------------------------------------- /release notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hisprofile/rigi-all/HEAD/release notes.md --------------------------------------------------------------------------------