├── .gitignore ├── CHANGELOG.md ├── README.md ├── blender_distribution ├── MH_Community_for_blender_279.zip └── MH_Community_for_blender_280.zip ├── blender_source └── MH_Community │ ├── __init__.py │ ├── animation_trimming.py │ ├── data │ ├── nodes │ │ ├── defaultMaterial.json │ │ ├── skinMaterial.json │ │ ├── skinMaterialSSS.json │ │ └── skinOverridePresets │ │ │ ├── asian.json │ │ │ ├── default.json │ │ │ ├── pale.json │ │ │ └── tan.json │ └── textures │ │ └── sss.png │ ├── devtools │ ├── __init__.py │ ├── devtools_ui.py │ └── printvgroups.py │ ├── extra_groups.py │ ├── mh_sync │ ├── JsonCall.py │ ├── __init__.py │ ├── bone_ui.py │ ├── directory_ops.py │ ├── expression_transfer.py │ ├── fetch_server_data.py │ ├── import_body_binary.py │ ├── import_proxy_binary.py │ ├── import_weighting.py │ ├── importer_ui.py │ ├── material.py │ ├── meshutils.py │ ├── presets.py │ ├── shapes_from_pose.py │ ├── sync_mesh.py │ ├── sync_ops.py │ └── sync_pose.py │ ├── mocap │ ├── __init__.py │ ├── animation_buffer.py │ ├── capture_armature.py │ ├── empties.py │ ├── keyframe_reduction.py │ ├── kinect2 │ │ ├── KinectToJSON_x64.dll │ │ ├── KinectToJSON_x86.dll │ │ ├── __init__.py │ │ └── kinect2_sensor.py │ ├── mocap_ui.py │ └── sensor_runtime.py │ ├── operators │ ├── __init__.py │ ├── actionkeyframereducer.py │ ├── actiontrimleft.py │ ├── actiontrimright.py │ ├── addsimplematerial.py │ ├── amputateface.py │ ├── amputatefingers.py │ ├── bodyimport.py │ ├── expressiontrans.py │ ├── loadpreset.py │ ├── meshsync.py │ ├── mocapassignment.py │ ├── mocaprefresh.py │ ├── poseright.py │ ├── posesync.py │ ├── removefingerrig.py │ ├── removeikrig.py │ ├── savepreset.py │ ├── separateeyes.py │ ├── snaponfingerrig.py │ ├── snaponikrig.py │ ├── startmocaprecording.py │ ├── stopmocaprecording.py │ └── toSensorRig.py │ ├── rig │ ├── __init__.py │ ├── bonesurgery.py │ ├── cmuriginfo.py │ ├── defaultriginfo.py │ ├── fingerrig.py │ ├── gameriginfo.py │ ├── ikrig.py │ ├── kinect2riginfo.py │ └── riginfo.py │ ├── separate_eyes.py │ └── util.py ├── doc-assist ├── IK_fingers.png ├── MH_server_socket.png ├── blender_anger_no_trans.png ├── blender_anger_trans.png ├── bones_tab.png ├── eye_before.png ├── eyes_after.png ├── kinect_tab.png ├── mesh_tab.png ├── mh_anger.png ├── newPoseLib.jpg ├── poseLib.jpg ├── rig_after.png └── rig_before.png └── rebuild_dist.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/README.md -------------------------------------------------------------------------------- /blender_distribution/MH_Community_for_blender_279.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_distribution/MH_Community_for_blender_279.zip -------------------------------------------------------------------------------- /blender_distribution/MH_Community_for_blender_280.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_distribution/MH_Community_for_blender_280.zip -------------------------------------------------------------------------------- /blender_source/MH_Community/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/animation_trimming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/animation_trimming.py -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/defaultMaterial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/defaultMaterial.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinMaterial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinMaterial.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinMaterialSSS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinMaterialSSS.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinOverridePresets/asian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinOverridePresets/asian.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinOverridePresets/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinOverridePresets/default.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinOverridePresets/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinOverridePresets/pale.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/nodes/skinOverridePresets/tan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/nodes/skinOverridePresets/tan.json -------------------------------------------------------------------------------- /blender_source/MH_Community/data/textures/sss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/data/textures/sss.png -------------------------------------------------------------------------------- /blender_source/MH_Community/devtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/devtools/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/devtools/devtools_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/devtools/devtools_ui.py -------------------------------------------------------------------------------- /blender_source/MH_Community/devtools/printvgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/devtools/printvgroups.py -------------------------------------------------------------------------------- /blender_source/MH_Community/extra_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/extra_groups.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/JsonCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/JsonCall.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/bone_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/bone_ui.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/directory_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/directory_ops.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/expression_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/expression_transfer.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/fetch_server_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/fetch_server_data.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/import_body_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/import_body_binary.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/import_proxy_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/import_proxy_binary.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/import_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/import_weighting.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/importer_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/importer_ui.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/material.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/meshutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/meshutils.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/presets.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/shapes_from_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/shapes_from_pose.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/sync_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/sync_mesh.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/sync_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/sync_ops.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mh_sync/sync_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mh_sync/sync_pose.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/animation_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/animation_buffer.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/capture_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/capture_armature.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/empties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/empties.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/keyframe_reduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/keyframe_reduction.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/kinect2/KinectToJSON_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/kinect2/KinectToJSON_x64.dll -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/kinect2/KinectToJSON_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/kinect2/KinectToJSON_x86.dll -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/kinect2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/kinect2/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/kinect2/kinect2_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/kinect2/kinect2_sensor.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/mocap_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/mocap_ui.py -------------------------------------------------------------------------------- /blender_source/MH_Community/mocap/sensor_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/mocap/sensor_runtime.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/actionkeyframereducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/actionkeyframereducer.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/actiontrimleft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/actiontrimleft.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/actiontrimright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/actiontrimright.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/addsimplematerial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/addsimplematerial.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/amputateface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/amputateface.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/amputatefingers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/amputatefingers.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/bodyimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/bodyimport.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/expressiontrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/expressiontrans.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/loadpreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/loadpreset.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/meshsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/meshsync.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/mocapassignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/mocapassignment.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/mocaprefresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/mocaprefresh.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/poseright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/poseright.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/posesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/posesync.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/removefingerrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/removefingerrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/removeikrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/removeikrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/savepreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/savepreset.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/separateeyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/separateeyes.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/snaponfingerrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/snaponfingerrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/snaponikrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/snaponikrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/startmocaprecording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/startmocaprecording.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/stopmocaprecording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/stopmocaprecording.py -------------------------------------------------------------------------------- /blender_source/MH_Community/operators/toSensorRig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/operators/toSensorRig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/__init__.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/bonesurgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/bonesurgery.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/cmuriginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/cmuriginfo.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/defaultriginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/defaultriginfo.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/fingerrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/fingerrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/gameriginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/gameriginfo.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/ikrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/ikrig.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/kinect2riginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/kinect2riginfo.py -------------------------------------------------------------------------------- /blender_source/MH_Community/rig/riginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/rig/riginfo.py -------------------------------------------------------------------------------- /blender_source/MH_Community/separate_eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/separate_eyes.py -------------------------------------------------------------------------------- /blender_source/MH_Community/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/blender_source/MH_Community/util.py -------------------------------------------------------------------------------- /doc-assist/IK_fingers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/IK_fingers.png -------------------------------------------------------------------------------- /doc-assist/MH_server_socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/MH_server_socket.png -------------------------------------------------------------------------------- /doc-assist/blender_anger_no_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/blender_anger_no_trans.png -------------------------------------------------------------------------------- /doc-assist/blender_anger_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/blender_anger_trans.png -------------------------------------------------------------------------------- /doc-assist/bones_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/bones_tab.png -------------------------------------------------------------------------------- /doc-assist/eye_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/eye_before.png -------------------------------------------------------------------------------- /doc-assist/eyes_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/eyes_after.png -------------------------------------------------------------------------------- /doc-assist/kinect_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/kinect_tab.png -------------------------------------------------------------------------------- /doc-assist/mesh_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/mesh_tab.png -------------------------------------------------------------------------------- /doc-assist/mh_anger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/mh_anger.png -------------------------------------------------------------------------------- /doc-assist/newPoseLib.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/newPoseLib.jpg -------------------------------------------------------------------------------- /doc-assist/poseLib.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/poseLib.jpg -------------------------------------------------------------------------------- /doc-assist/rig_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/rig_after.png -------------------------------------------------------------------------------- /doc-assist/rig_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/doc-assist/rig_before.png -------------------------------------------------------------------------------- /rebuild_dist.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makehumancommunity/makehuman-plugin-for-blender/HEAD/rebuild_dist.bash --------------------------------------------------------------------------------