├── .git-blame-ignore-revs ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── __init__.py ├── blender_manifest.toml ├── images ├── bl_gui_3DVIEW_MT_object.png ├── shapekey_changing_geometry.gif ├── skkeeper_icon.png ├── skkeeper_icon.svg ├── skkeeper_splash.png ├── skkeeper_splash.svg └── skkeeper_splash_hd.png ├── readme.md └── tests ├── testfile.blend ├── testfile_multiple.blend ├── testfile_performance.blend ├── testtfile_driver_on_shapekey.blend ├── testtfile_problematic_modifier.blend ├── testtfile_problematic_modifier.blend1 ├── testtfile_problematic_shapekey.blend └── testtfile_problematic_shapekey.blend1 /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | install.sh 2 | release/ 3 | *.zip 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /images/bl_gui_3DVIEW_MT_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/bl_gui_3DVIEW_MT_object.png -------------------------------------------------------------------------------- /images/shapekey_changing_geometry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/shapekey_changing_geometry.gif -------------------------------------------------------------------------------- /images/skkeeper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/skkeeper_icon.png -------------------------------------------------------------------------------- /images/skkeeper_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/skkeeper_icon.svg -------------------------------------------------------------------------------- /images/skkeeper_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/skkeeper_splash.png -------------------------------------------------------------------------------- /images/skkeeper_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/skkeeper_splash.svg -------------------------------------------------------------------------------- /images/skkeeper_splash_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/images/skkeeper_splash_hd.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/readme.md -------------------------------------------------------------------------------- /tests/testfile.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testfile.blend -------------------------------------------------------------------------------- /tests/testfile_multiple.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testfile_multiple.blend -------------------------------------------------------------------------------- /tests/testfile_performance.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testfile_performance.blend -------------------------------------------------------------------------------- /tests/testtfile_driver_on_shapekey.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testtfile_driver_on_shapekey.blend -------------------------------------------------------------------------------- /tests/testtfile_problematic_modifier.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testtfile_problematic_modifier.blend -------------------------------------------------------------------------------- /tests/testtfile_problematic_modifier.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testtfile_problematic_modifier.blend1 -------------------------------------------------------------------------------- /tests/testtfile_problematic_shapekey.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testtfile_problematic_shapekey.blend -------------------------------------------------------------------------------- /tests/testtfile_problematic_shapekey.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokejohn/SKkeeper/HEAD/tests/testtfile_problematic_shapekey.blend1 --------------------------------------------------------------------------------