├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── base_rig.py ├── gamerig_generate.py ├── images └── installation_enable_rigify.png ├── metarigs └── __init__.py ├── operators ├── __init__.py ├── upgrade_face.py └── upgrade_metarig_types.py ├── rigs ├── __init__.py ├── chain_rigs.py └── game │ ├── __init__.py │ ├── basic │ ├── __init__.py │ ├── copy_chain.py │ ├── pivot.py │ ├── raw_copy.py │ └── super_copy.py │ ├── experimental │ └── __init__.py │ ├── face │ ├── __init__.py │ ├── basic_tongue.py │ ├── skin_eye.py │ └── skin_jaw.py │ ├── faces │ ├── __init__.py │ └── super_face.py │ ├── limbs │ ├── __init__.py │ ├── arm.py │ ├── front_paw.py │ ├── leg.py │ ├── limb_rigs.py │ ├── paw.py │ ├── rear_paw.py │ ├── simple_tentacle.py │ ├── spline_tentacle.py │ ├── super_finger.py │ ├── super_limb.py │ └── super_palm.py │ ├── skin │ ├── anchor.py │ ├── basic_chain.py │ ├── glue.py │ ├── skin_rigs.py │ ├── stretchy_chain.py │ └── transform │ │ └── basic.py │ └── spines │ ├── __init__.py │ ├── basic_spine.py │ ├── basic_tail.py │ ├── spine_rigs.py │ ├── super_head.py │ └── super_spine.py ├── ui.py └── utils ├── __init__.py ├── bones.py ├── space_switch.py └── ui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/__init__.py -------------------------------------------------------------------------------- /base_rig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/base_rig.py -------------------------------------------------------------------------------- /gamerig_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/gamerig_generate.py -------------------------------------------------------------------------------- /images/installation_enable_rigify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/images/installation_enable_rigify.png -------------------------------------------------------------------------------- /metarigs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/operators/__init__.py -------------------------------------------------------------------------------- /operators/upgrade_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/operators/upgrade_face.py -------------------------------------------------------------------------------- /operators/upgrade_metarig_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/operators/upgrade_metarig_types.py -------------------------------------------------------------------------------- /rigs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/chain_rigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/chain_rigs.py -------------------------------------------------------------------------------- /rigs/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/basic/copy_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/basic/copy_chain.py -------------------------------------------------------------------------------- /rigs/game/basic/pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/basic/pivot.py -------------------------------------------------------------------------------- /rigs/game/basic/raw_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/basic/raw_copy.py -------------------------------------------------------------------------------- /rigs/game/basic/super_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/basic/super_copy.py -------------------------------------------------------------------------------- /rigs/game/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/face/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/face/basic_tongue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/face/basic_tongue.py -------------------------------------------------------------------------------- /rigs/game/face/skin_eye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/face/skin_eye.py -------------------------------------------------------------------------------- /rigs/game/face/skin_jaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/face/skin_jaw.py -------------------------------------------------------------------------------- /rigs/game/faces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/faces/super_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/faces/super_face.py -------------------------------------------------------------------------------- /rigs/game/limbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/limbs/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/arm.py -------------------------------------------------------------------------------- /rigs/game/limbs/front_paw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/front_paw.py -------------------------------------------------------------------------------- /rigs/game/limbs/leg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/leg.py -------------------------------------------------------------------------------- /rigs/game/limbs/limb_rigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/limb_rigs.py -------------------------------------------------------------------------------- /rigs/game/limbs/paw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/paw.py -------------------------------------------------------------------------------- /rigs/game/limbs/rear_paw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/rear_paw.py -------------------------------------------------------------------------------- /rigs/game/limbs/simple_tentacle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/simple_tentacle.py -------------------------------------------------------------------------------- /rigs/game/limbs/spline_tentacle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/spline_tentacle.py -------------------------------------------------------------------------------- /rigs/game/limbs/super_finger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/super_finger.py -------------------------------------------------------------------------------- /rigs/game/limbs/super_limb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/super_limb.py -------------------------------------------------------------------------------- /rigs/game/limbs/super_palm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/limbs/super_palm.py -------------------------------------------------------------------------------- /rigs/game/skin/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/anchor.py -------------------------------------------------------------------------------- /rigs/game/skin/basic_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/basic_chain.py -------------------------------------------------------------------------------- /rigs/game/skin/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/glue.py -------------------------------------------------------------------------------- /rigs/game/skin/skin_rigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/skin_rigs.py -------------------------------------------------------------------------------- /rigs/game/skin/stretchy_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/stretchy_chain.py -------------------------------------------------------------------------------- /rigs/game/skin/transform/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/skin/transform/basic.py -------------------------------------------------------------------------------- /rigs/game/spines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rigs/game/spines/basic_spine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/spines/basic_spine.py -------------------------------------------------------------------------------- /rigs/game/spines/basic_tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/spines/basic_tail.py -------------------------------------------------------------------------------- /rigs/game/spines/spine_rigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/spines/spine_rigs.py -------------------------------------------------------------------------------- /rigs/game/spines/super_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/spines/super_head.py -------------------------------------------------------------------------------- /rigs/game/spines/super_spine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/rigs/game/spines/super_spine.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/ui.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/bones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/utils/bones.py -------------------------------------------------------------------------------- /utils/space_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/utils/space_switch.py -------------------------------------------------------------------------------- /utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arminando/GameRig/HEAD/utils/ui.py --------------------------------------------------------------------------------