├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── attach_control_psop.py ├── attach_obj_control_psop.py ├── create_obj_ctrls.py ├── hda ├── attach_control_geometry__1_2.hda ├── attach_control_geometry__1_3.hda ├── attach_obj_control__1_0.hda ├── controls_library__1_0.hdalc ├── create_zero_attr__1_1.hdalc ├── joint_apply_offset__1_0.hdalc ├── rig_control__1_0.hdalc ├── rig_zero__1_1.hdalc ├── space_switch__1_0.hdalc ├── space_switch__1_1.hdalc └── space_switch_icon.svg ├── hips ├── finall.hiplc ├── scale_mirrored_skeleton.hiplc ├── space_switch_example.hiplc └── start.hiplc ├── images ├── attach_geometry_01.PNG ├── attach_geometry_02.PNG ├── attach_geometry_ms_03.PNG ├── attach_obj_01.PNG ├── attach_obj_jointgeo_02.PNG ├── control_node_01.PNG ├── controls_group_01.PNG ├── h19_5_attribute_delete.png ├── info.png ├── joint_offset_01.PNG ├── rig_zero_01.PNG ├── rig_zero_ws_02.PNG ├── rig_zero_ws_03.PNG ├── space_switch_01.png └── space_switch_02.png ├── local_config.py ├── spaceswitch.py └── spaceswitch_posecalc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/__init__.py -------------------------------------------------------------------------------- /attach_control_psop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/attach_control_psop.py -------------------------------------------------------------------------------- /attach_obj_control_psop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/attach_obj_control_psop.py -------------------------------------------------------------------------------- /create_obj_ctrls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/create_obj_ctrls.py -------------------------------------------------------------------------------- /hda/attach_control_geometry__1_2.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/attach_control_geometry__1_2.hda -------------------------------------------------------------------------------- /hda/attach_control_geometry__1_3.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/attach_control_geometry__1_3.hda -------------------------------------------------------------------------------- /hda/attach_obj_control__1_0.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/attach_obj_control__1_0.hda -------------------------------------------------------------------------------- /hda/controls_library__1_0.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/controls_library__1_0.hdalc -------------------------------------------------------------------------------- /hda/create_zero_attr__1_1.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/create_zero_attr__1_1.hdalc -------------------------------------------------------------------------------- /hda/joint_apply_offset__1_0.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/joint_apply_offset__1_0.hdalc -------------------------------------------------------------------------------- /hda/rig_control__1_0.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/rig_control__1_0.hdalc -------------------------------------------------------------------------------- /hda/rig_zero__1_1.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/rig_zero__1_1.hdalc -------------------------------------------------------------------------------- /hda/space_switch__1_0.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/space_switch__1_0.hdalc -------------------------------------------------------------------------------- /hda/space_switch__1_1.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/space_switch__1_1.hdalc -------------------------------------------------------------------------------- /hda/space_switch_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hda/space_switch_icon.svg -------------------------------------------------------------------------------- /hips/finall.hiplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hips/finall.hiplc -------------------------------------------------------------------------------- /hips/scale_mirrored_skeleton.hiplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hips/scale_mirrored_skeleton.hiplc -------------------------------------------------------------------------------- /hips/space_switch_example.hiplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hips/space_switch_example.hiplc -------------------------------------------------------------------------------- /hips/start.hiplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/hips/start.hiplc -------------------------------------------------------------------------------- /images/attach_geometry_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/attach_geometry_01.PNG -------------------------------------------------------------------------------- /images/attach_geometry_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/attach_geometry_02.PNG -------------------------------------------------------------------------------- /images/attach_geometry_ms_03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/attach_geometry_ms_03.PNG -------------------------------------------------------------------------------- /images/attach_obj_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/attach_obj_01.PNG -------------------------------------------------------------------------------- /images/attach_obj_jointgeo_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/attach_obj_jointgeo_02.PNG -------------------------------------------------------------------------------- /images/control_node_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/control_node_01.PNG -------------------------------------------------------------------------------- /images/controls_group_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/controls_group_01.PNG -------------------------------------------------------------------------------- /images/h19_5_attribute_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/h19_5_attribute_delete.png -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/info.png -------------------------------------------------------------------------------- /images/joint_offset_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/joint_offset_01.PNG -------------------------------------------------------------------------------- /images/rig_zero_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/rig_zero_01.PNG -------------------------------------------------------------------------------- /images/rig_zero_ws_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/rig_zero_ws_02.PNG -------------------------------------------------------------------------------- /images/rig_zero_ws_03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/rig_zero_ws_03.PNG -------------------------------------------------------------------------------- /images/space_switch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/space_switch_01.png -------------------------------------------------------------------------------- /images/space_switch_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/images/space_switch_02.png -------------------------------------------------------------------------------- /local_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/local_config.py -------------------------------------------------------------------------------- /spaceswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/spaceswitch.py -------------------------------------------------------------------------------- /spaceswitch_posecalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilhepner/kinefx_tools/HEAD/spaceswitch_posecalc.h --------------------------------------------------------------------------------