├── .gitignore ├── LICENSE.Character_Assets.md ├── LICENSE.code.md ├── README.md ├── custom_steps ├── _shared │ └── scripts │ │ ├── post │ │ ├── anim_picker.py │ │ ├── clean_unknown_plugins.py │ │ ├── import_skinPack.py │ │ ├── rbf_setup.py │ │ └── unselectable_geo.py │ │ └── pre │ │ └── import_geo.py └── chara │ ├── _shared │ ├── data │ │ └── biped.pkr │ └── scripts │ │ └── post │ │ ├── channel_default_values_config.py │ │ ├── gimmick_joints.py │ │ ├── init_base.py │ │ ├── proxy_ctl_swap_callback.py │ │ ├── reset_hands_IK_ctl.py │ │ └── set_rotation_order.py │ └── anima_girl │ ├── _shared │ ├── data │ │ ├── SHAPES │ │ │ ├── body_blendShape.mel │ │ │ ├── body_blendShape_shapes.ma │ │ │ └── body_blendShape_shapes_data.ma │ │ └── rbf.rbf │ └── scripts │ │ └── post │ │ └── import_SHAPES.py │ ├── outfit_A │ ├── _shared │ │ └── data │ │ │ └── hair_tail.sgt │ ├── film │ │ ├── assets │ │ │ └── geo.ma │ │ ├── data │ │ │ ├── guide.sgt │ │ │ └── skin │ │ │ │ ├── boots_C0_geoSdm.jSkin │ │ │ │ ├── brow_C0_geoSdm.jSkin │ │ │ │ ├── eyeShadow_C0_geoSdm.jSkin │ │ │ │ ├── eye_L0_geoSdm.jSkin │ │ │ │ ├── eye_R0_geoSdm.jSkin │ │ │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ │ │ ├── eyelash_C0_geoSdm.jSkin │ │ │ │ ├── eyeline_C0_geoSdm.jSkin │ │ │ │ ├── hairA_C0_geoSdm.jSkin │ │ │ │ ├── hairSideA_C0_geoSdm.jSkin │ │ │ │ ├── hairTopA_C0_geoSdm.jSkin │ │ │ │ ├── nails_C0_geoSdm.jSkin │ │ │ │ ├── onePieceA_C0_geoSdm.jSkin │ │ │ │ ├── partsA_C0_geoSdm.jSkin │ │ │ │ ├── shorts_C0_geoSdm.jSkin │ │ │ │ ├── skin.gSkinPack │ │ │ │ ├── skin_C0_geoSdm.jSkin │ │ │ │ ├── skirtA_C0_geoSdm.jSkin │ │ │ │ ├── teethD_C0_geoSdm.jSkin │ │ │ │ ├── teethU_C0_geoSdm.jSkin │ │ │ │ └── tongue_C0_geoSdm.jSkin │ │ └── scripts │ │ │ └── pre │ │ │ └── paths.py │ └── game │ │ ├── assets │ │ └── geo.ma │ │ ├── data │ │ ├── guide.sgt │ │ └── skin │ │ │ ├── body_C0_geoSdm.jSkin │ │ │ ├── brow_C0_geoSdm.jSkin │ │ │ ├── eye_L0_geoSdm.jSkin │ │ │ ├── eye_R0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ │ ├── eyelash_C0_geoSdm.jSkin │ │ │ ├── eyeline_C0_geoSdm.jSkin │ │ │ ├── hairA_C0_geo.jSkin │ │ │ ├── hairSideA_C0_geo.jSkin │ │ │ ├── hairTopA_C0_geo.jSkin │ │ │ ├── onePieceA_C0_geo.jSkin │ │ │ ├── partsA_C0_geo.jSkin │ │ │ ├── skin.gSkinPack │ │ │ ├── skirtA_C0_geo.jSkin │ │ │ ├── teethD_C0_geoSdm.jSkin │ │ │ ├── teethU_C0_geoSdm.jSkin │ │ │ └── tongue_C0_geoSdm.jSkin │ │ └── scripts │ │ └── pre │ │ └── paths.py │ ├── outfit_B │ ├── _shared │ │ └── data │ │ │ └── hair_tail.sgt │ ├── film │ │ ├── assets │ │ │ └── geo.ma │ │ ├── data │ │ │ ├── guide.sgt │ │ │ └── skin │ │ │ │ ├── boots_C0_geoSdm.jSkin │ │ │ │ ├── brow_C0_geoSdm.jSkin │ │ │ │ ├── eyeShadow_C0_geoSdm.jSkin │ │ │ │ ├── eye_L0_geoSdm.jSkin │ │ │ │ ├── eye_R0_geoSdm.jSkin │ │ │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ │ │ ├── eyelash_C0_geoSdm.jSkin │ │ │ │ ├── eyeline_C0_geoSdm.jSkin │ │ │ │ ├── hairB_C0_geoSdm.jSkin │ │ │ │ ├── hairSideB_C0_geoSdm.jSkin │ │ │ │ ├── hairTopB_C0_geoSdm.jSkin │ │ │ │ ├── jacketB_C0_geoSdm.jSkin │ │ │ │ ├── nails_C0_geoSdm.jSkin │ │ │ │ ├── partsB_C0_geoSdm.jSkin │ │ │ │ ├── shorts_C0_geoSdm.jSkin │ │ │ │ ├── skin.gSkinPack │ │ │ │ ├── skin_C0_geoSdm.jSkin │ │ │ │ ├── skirtB_C0_geoSdm.jSkin │ │ │ │ ├── teethD_C0_geoSdm.jSkin │ │ │ │ ├── teethU_C0_geoSdm.jSkin │ │ │ │ └── tongue_C0_geoSdm.jSkin │ │ └── scripts │ │ │ └── pre │ │ │ └── paths.py │ └── game │ │ ├── assets │ │ └── geo.ma │ │ ├── data │ │ ├── guide.sgt │ │ └── skin │ │ │ ├── body_C0_geoSdm.jSkin │ │ │ ├── brow_C0_geoSdm.jSkin │ │ │ ├── eye_L0_geoSdm.jSkin │ │ │ ├── eye_R0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ │ ├── eyelash_C0_geoSdm.jSkin │ │ │ ├── eyeline_C0_geoSdm.jSkin │ │ │ ├── hairB_C0_geoSdm.jSkin │ │ │ ├── hairSideB_C0_geoSdm.jSkin │ │ │ ├── hairTopB_C0_geoSdm.jSkin │ │ │ ├── jacketB_C0_geoSdm.jSkin │ │ │ ├── partsB_C0_geoSdm.jSkin │ │ │ ├── skin.gSkinPack │ │ │ ├── skirtB_C0_geoSdm.jSkin │ │ │ ├── teethD_C0_geoSdm.jSkin │ │ │ ├── teethU_C0_geoSdm.jSkin │ │ │ └── tongue_C0_geoSdm.jSkin │ │ └── scripts │ │ └── pre │ │ └── paths.py │ └── outfit_C │ ├── _shared │ └── data │ │ └── hair_tail.sgt │ ├── film │ ├── assets │ │ └── geo.ma │ ├── data │ │ ├── guide.sgt │ │ └── skin │ │ │ ├── beltC_C0_geoSdm.jSkin │ │ │ ├── boots_C0_geoSdm.jSkin │ │ │ ├── brow_C0_geoSdm.jSkin │ │ │ ├── eyeShadow_C0_geoSdm.jSkin │ │ │ ├── eye_L0_geoSdm.jSkin │ │ │ ├── eye_R0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ │ ├── eyelash_C0_geoSdm.jSkin │ │ │ ├── eyeline_C0_geoSdm.jSkin │ │ │ ├── hairC_C0_geoSdm.jSkin │ │ │ ├── hairClipC_C0_geoSdm.jSkin │ │ │ ├── hairSideC_C0_geoSdm.jSkin │ │ │ ├── hairTopC_C0_geoSdm.jSkin │ │ │ ├── hairbackC_C0_geoSdm.jSkin │ │ │ ├── jacketC_C0_geoSdm.jSkin │ │ │ ├── nails_C0_geoSdm.jSkin │ │ │ ├── shirtC_C0_geoSdm.jSkin │ │ │ ├── shorts_C0_geoSdm.jSkin │ │ │ ├── skin.gSkinPack │ │ │ ├── skin_C0_geoSdm.jSkin │ │ │ ├── skirtC_C0_geoSdm.jSkin │ │ │ ├── teethD_C0_geoSdm.jSkin │ │ │ ├── teethU_C0_geoSdm.jSkin │ │ │ └── tongue_C0_geoSdm.jSkin │ └── scripts │ │ └── pre │ │ └── paths.py │ └── game │ ├── assets │ └── geo.ma │ ├── data │ ├── guide.sgt │ └── skin │ │ ├── body_C0_geoSdm.jSkin │ │ ├── brow_C0_geoSdm.jSkin │ │ ├── eye_L0_geoSdm.jSkin │ │ ├── eye_R0_geoSdm.jSkin │ │ ├── eyehighlightSecond_L0_geoSdm.jSkin │ │ ├── eyehighlightSecond_R0_geoSdm.jSkin │ │ ├── eyehighlight_L0_geoSdm.jSkin │ │ ├── eyehighlight_R0_geoSdm.jSkin │ │ ├── eyelash_C0_geoSdm.jSkin │ │ ├── eyeline_C0_geoSdm.jSkin │ │ ├── hairC_C0_geoSdm.jSkin │ │ ├── hairClipC_C0_geoSdm.jSkin │ │ ├── hairSideC_C0_geoSdm.jSkin │ │ ├── hairTopC_C0_geoSdm.jSkin │ │ ├── hairbackC_C0_geoSdm.jSkin │ │ ├── jacketC_C0_geoSdm.jSkin │ │ ├── shirtC_C0_geoSdm.jSkin │ │ ├── skin.gSkinPack │ │ ├── teethD_C0_geoSdm.jSkin │ │ ├── teethU_C0_geoSdm.jSkin │ │ └── tongue_C0_geoSdm.jSkin │ └── scripts │ └── pre │ └── paths.py ├── rigs ├── girl_Outfit_A_film.ma ├── girl_Outfit_A_game.ma ├── girl_Outfit_B_film.ma ├── girl_Outfit_B_game.ma ├── girl_Outfit_C_film.ma └── girl_Outfit_C_game.ma └── textures ├── cedec_eye_dif.png ├── cedec_eye_sh.png ├── cedec_skin_dif_1001.png ├── cedec_skin_dif_1002.png ├── cedec_skin_sh_1001.png └── cedec_skin_sh_1002.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.Character_Assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/LICENSE.Character_Assets.md -------------------------------------------------------------------------------- /LICENSE.code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/LICENSE.code.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/README.md -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/post/anim_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/post/anim_picker.py -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/post/clean_unknown_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/post/clean_unknown_plugins.py -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/post/import_skinPack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/post/import_skinPack.py -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/post/rbf_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/post/rbf_setup.py -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/post/unselectable_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/post/unselectable_geo.py -------------------------------------------------------------------------------- /custom_steps/_shared/scripts/pre/import_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/_shared/scripts/pre/import_geo.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/data/biped.pkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/data/biped.pkr -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/channel_default_values_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/channel_default_values_config.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/gimmick_joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/gimmick_joints.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/init_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/init_base.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/proxy_ctl_swap_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/proxy_ctl_swap_callback.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/reset_hands_IK_ctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/reset_hands_IK_ctl.py -------------------------------------------------------------------------------- /custom_steps/chara/_shared/scripts/post/set_rotation_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/_shared/scripts/post/set_rotation_order.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape.mel -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape_shapes.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape_shapes.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape_shapes_data.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/_shared/data/SHAPES/body_blendShape_shapes_data.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/_shared/data/rbf.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/_shared/data/rbf.rbf -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/_shared/scripts/post/import_SHAPES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/_shared/scripts/post/import_SHAPES.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/_shared/data/hair_tail.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/_shared/data/hair_tail.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/boots_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/boots_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyeShadow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyeShadow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairSideA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairSideA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairTopA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/hairTopA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/nails_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/nails_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/onePieceA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/onePieceA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/partsA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/partsA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/shorts_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/shorts_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/skin_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/skin_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/skirtA_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/skirtA_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/film/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/film/scripts/pre/paths.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/body_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/body_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairSideA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairSideA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairTopA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/hairTopA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/onePieceA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/onePieceA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/partsA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/partsA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/skirtA_C0_geo.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/skirtA_C0_geo.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_A/game/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_A/game/scripts/pre/paths.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/_shared/data/hair_tail.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/_shared/data/hair_tail.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/boots_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/boots_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyeShadow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyeShadow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairSideB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairSideB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairTopB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/hairTopB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/jacketB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/jacketB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/nails_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/nails_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/partsB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/partsB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/shorts_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/shorts_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/skin_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/skin_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/skirtB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/skirtB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/film/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/film/scripts/pre/paths.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/body_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/body_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairSideB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairSideB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairTopB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/hairTopB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/jacketB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/jacketB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/partsB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/partsB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/skirtB_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/skirtB_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_B/game/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_B/game/scripts/pre/paths.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/_shared/data/hair_tail.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/_shared/data/hair_tail.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/beltC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/beltC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/boots_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/boots_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyeShadow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyeShadow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairClipC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairClipC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairSideC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairSideC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairTopC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairTopC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairbackC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/hairbackC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/jacketC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/jacketC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/nails_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/nails_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/shirtC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/shirtC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/shorts_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/shorts_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/skin_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/skin_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/skirtC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/skirtC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/film/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/film/scripts/pre/paths.py -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/assets/geo.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/assets/geo.ma -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/guide.sgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/guide.sgt -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/body_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/body_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/brow_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/brow_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eye_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eye_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eye_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eye_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlightSecond_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlightSecond_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlight_L0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlight_L0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlight_R0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyehighlight_R0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyelash_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyelash_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyeline_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/eyeline_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairClipC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairClipC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairSideC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairSideC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairTopC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairTopC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairbackC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/hairbackC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/jacketC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/jacketC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/shirtC_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/shirtC_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/skin.gSkinPack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/skin.gSkinPack -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/teethD_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/teethD_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/teethU_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/teethU_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/data/skin/tongue_C0_geoSdm.jSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/data/skin/tongue_C0_geoSdm.jSkin -------------------------------------------------------------------------------- /custom_steps/chara/anima_girl/outfit_C/game/scripts/pre/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/custom_steps/chara/anima_girl/outfit_C/game/scripts/pre/paths.py -------------------------------------------------------------------------------- /rigs/girl_Outfit_A_film.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_A_film.ma -------------------------------------------------------------------------------- /rigs/girl_Outfit_A_game.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_A_game.ma -------------------------------------------------------------------------------- /rigs/girl_Outfit_B_film.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_B_film.ma -------------------------------------------------------------------------------- /rigs/girl_Outfit_B_game.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_B_game.ma -------------------------------------------------------------------------------- /rigs/girl_Outfit_C_film.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_C_film.ma -------------------------------------------------------------------------------- /rigs/girl_Outfit_C_game.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/rigs/girl_Outfit_C_game.ma -------------------------------------------------------------------------------- /textures/cedec_eye_dif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_eye_dif.png -------------------------------------------------------------------------------- /textures/cedec_eye_sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_eye_sh.png -------------------------------------------------------------------------------- /textures/cedec_skin_dif_1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_skin_dif_1001.png -------------------------------------------------------------------------------- /textures/cedec_skin_dif_1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_skin_dif_1002.png -------------------------------------------------------------------------------- /textures/cedec_skin_sh_1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_skin_sh_1001.png -------------------------------------------------------------------------------- /textures/cedec_skin_sh_1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgear-dev/Data-centric_rigging_sample_data/HEAD/textures/cedec_skin_sh_1002.png --------------------------------------------------------------------------------