├── .gitignore ├── Assets ├── ice_cube.blend ├── ice_cube_10px.blend ├── ice_cube_14px.blend ├── ice_cube_default.png └── icons │ ├── alex.png │ ├── discord_logo.png │ ├── ice_cube_logo.png │ ├── makena.png │ └── steve.png ├── Operators ├── __init__.py ├── append.py ├── bake_rig.py ├── custom_default.py ├── dev.py ├── ik_snapping.py ├── parenting.py ├── reset_all.py ├── skin_downloader.py ├── update_checker.py └── url_stuff.py ├── Panels ├── __init__.py ├── add_menu.py ├── bone_collections.py ├── ice_cube.py ├── parenting.py ├── style.py └── workflow.py ├── Properties ├── __init__.py ├── booleans.py ├── enumerators.py ├── floats.py ├── pointers.py └── strings.py ├── README.md ├── __init__.py ├── blender_manifest.toml ├── constants.py ├── ice_cube_selectors.py ├── icons.py ├── previews.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/ice_cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/ice_cube.blend -------------------------------------------------------------------------------- /Assets/ice_cube_10px.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/ice_cube_10px.blend -------------------------------------------------------------------------------- /Assets/ice_cube_14px.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/ice_cube_14px.blend -------------------------------------------------------------------------------- /Assets/ice_cube_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/ice_cube_default.png -------------------------------------------------------------------------------- /Assets/icons/alex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/icons/alex.png -------------------------------------------------------------------------------- /Assets/icons/discord_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/icons/discord_logo.png -------------------------------------------------------------------------------- /Assets/icons/ice_cube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/icons/ice_cube_logo.png -------------------------------------------------------------------------------- /Assets/icons/makena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/icons/makena.png -------------------------------------------------------------------------------- /Assets/icons/steve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Assets/icons/steve.png -------------------------------------------------------------------------------- /Operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/__init__.py -------------------------------------------------------------------------------- /Operators/append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/append.py -------------------------------------------------------------------------------- /Operators/bake_rig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/bake_rig.py -------------------------------------------------------------------------------- /Operators/custom_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/custom_default.py -------------------------------------------------------------------------------- /Operators/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/dev.py -------------------------------------------------------------------------------- /Operators/ik_snapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/ik_snapping.py -------------------------------------------------------------------------------- /Operators/parenting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/parenting.py -------------------------------------------------------------------------------- /Operators/reset_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/reset_all.py -------------------------------------------------------------------------------- /Operators/skin_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/skin_downloader.py -------------------------------------------------------------------------------- /Operators/update_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/update_checker.py -------------------------------------------------------------------------------- /Operators/url_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Operators/url_stuff.py -------------------------------------------------------------------------------- /Panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/__init__.py -------------------------------------------------------------------------------- /Panels/add_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/add_menu.py -------------------------------------------------------------------------------- /Panels/bone_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/bone_collections.py -------------------------------------------------------------------------------- /Panels/ice_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/ice_cube.py -------------------------------------------------------------------------------- /Panels/parenting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/parenting.py -------------------------------------------------------------------------------- /Panels/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/style.py -------------------------------------------------------------------------------- /Panels/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Panels/workflow.py -------------------------------------------------------------------------------- /Properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/__init__.py -------------------------------------------------------------------------------- /Properties/booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/booleans.py -------------------------------------------------------------------------------- /Properties/enumerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/enumerators.py -------------------------------------------------------------------------------- /Properties/floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/floats.py -------------------------------------------------------------------------------- /Properties/pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/pointers.py -------------------------------------------------------------------------------- /Properties/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/Properties/strings.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/constants.py -------------------------------------------------------------------------------- /ice_cube_selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/ice_cube_selectors.py -------------------------------------------------------------------------------- /icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/icons.py -------------------------------------------------------------------------------- /previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/previews.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarthLilo/ice_cube/HEAD/utils.py --------------------------------------------------------------------------------