├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── blend_open_ops.py ├── blender_manifest.toml ├── extend_history.py ├── history.py ├── keymap.py ├── links_checker.py ├── open_addons_path.py ├── operators.py ├── panels.py ├── path_func.py └── prefs.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[cod] -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/__init__.py -------------------------------------------------------------------------------- /blend_open_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/blend_open_ops.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /extend_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/extend_history.py -------------------------------------------------------------------------------- /history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/history.py -------------------------------------------------------------------------------- /keymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/keymap.py -------------------------------------------------------------------------------- /links_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/links_checker.py -------------------------------------------------------------------------------- /open_addons_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/open_addons_path.py -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/operators.py -------------------------------------------------------------------------------- /panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/panels.py -------------------------------------------------------------------------------- /path_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/path_func.py -------------------------------------------------------------------------------- /prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/SB_path_actions/HEAD/prefs.py --------------------------------------------------------------------------------