├── .gitignore ├── CHANGELOG.jp_JP.md ├── CHANGELOG.md ├── CHANGELOG.zh_CN.md ├── Contents └── scripts │ ├── humtools │ ├── __init__.py │ ├── blendshapedmesheditor │ │ ├── __init__.py │ │ ├── const.py │ │ ├── cv_freezer.py │ │ ├── non_deformer_history_deleter.py │ │ ├── rebuilt_target_mesh_deleter.py │ │ ├── selection.py │ │ ├── setup.py │ │ ├── startup_command.py │ │ ├── tweak_helper.py │ │ ├── uv_shifter.py │ │ └── window.py │ ├── blendshapedvertexmerger │ │ ├── __init__.py │ │ ├── blendshape_reconfigurator.py │ │ ├── blendshape_target_rebuilder.py │ │ ├── const.py │ │ ├── main.py │ │ ├── non_deformer_history_deleter.py │ │ ├── selected_getter.py │ │ ├── setup.py │ │ ├── startup_command.py │ │ ├── vtx_merger.py │ │ └── window.py │ ├── hum_tools_const.py │ ├── lib │ │ ├── __init__.py │ │ ├── blendshape.py │ │ └── tool_mode.py │ ├── menu_adder.py │ ├── module_reloader.py │ ├── skinweightsbugsearcher │ │ ├── __init__.py │ │ ├── bug_searcher.py │ │ ├── const.py │ │ ├── lang_op_var.py │ │ ├── om2_util.py │ │ ├── selection.py │ │ ├── setup.py │ │ ├── startup_command.py │ │ ├── weights_bug_text_scroll_list.py │ │ ├── window.py │ │ └── working_mesh.py │ ├── skinweightsio │ │ ├── __init__.py │ │ ├── auto_skin_binder.py │ │ ├── const.py │ │ ├── deformer_weights_exporter.py │ │ ├── deformer_weights_importer.py │ │ ├── lang_op_var.py │ │ ├── main.py │ │ ├── mesh_parent_transform_and_skincluster_dict_getter.py │ │ ├── option_settings.py │ │ ├── selection.py │ │ ├── setup.py │ │ ├── startup_command.py │ │ ├── window.py │ │ └── xml_text_scroll_list.py │ ├── startup.py │ └── util │ │ ├── __init__.py │ │ ├── dict_util.py │ │ ├── extensions.py │ │ ├── hum_window_base.py │ │ ├── in_view_message.py │ │ ├── lang.py │ │ ├── list_util.py │ │ ├── log.py │ │ ├── node_type.py │ │ ├── path.py │ │ ├── progress_window.py │ │ ├── readonly.py │ │ ├── selection_recorder.py │ │ ├── str_util.py │ │ ├── time_recorder.py │ │ └── unexpected_error.py │ └── userSetup.py ├── LICENSE ├── PackageContents.xml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.jp_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/CHANGELOG.jp_JP.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/CHANGELOG.zh_CN.md -------------------------------------------------------------------------------- /Contents/scripts/humtools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/const.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/cv_freezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/cv_freezer.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/non_deformer_history_deleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/non_deformer_history_deleter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/rebuilt_target_mesh_deleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/rebuilt_target_mesh_deleter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/selection.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/setup.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/startup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/startup_command.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/tweak_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/tweak_helper.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/uv_shifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/uv_shifter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedmesheditor/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedmesheditor/window.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/blendshape_reconfigurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/blendshape_reconfigurator.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/blendshape_target_rebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/blendshape_target_rebuilder.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/const.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/main.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/non_deformer_history_deleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/non_deformer_history_deleter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/selected_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/selected_getter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/setup.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/startup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/startup_command.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/vtx_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/vtx_merger.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/blendshapedvertexmerger/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/blendshapedvertexmerger/window.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/hum_tools_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/hum_tools_const.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/lib/blendshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/lib/blendshape.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/lib/tool_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/lib/tool_mode.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/menu_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/menu_adder.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/module_reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/module_reloader.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/bug_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/bug_searcher.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/const.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/lang_op_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/lang_op_var.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/om2_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/om2_util.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/selection.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/setup.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/startup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/startup_command.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/weights_bug_text_scroll_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/weights_bug_text_scroll_list.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/window.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsbugsearcher/working_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsbugsearcher/working_mesh.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/auto_skin_binder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/auto_skin_binder.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/const.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/deformer_weights_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/deformer_weights_exporter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/deformer_weights_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/deformer_weights_importer.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/lang_op_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/lang_op_var.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/main.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/mesh_parent_transform_and_skincluster_dict_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/mesh_parent_transform_and_skincluster_dict_getter.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/option_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/option_settings.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/selection.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/setup.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/startup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/startup_command.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/window.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/skinweightsio/xml_text_scroll_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/skinweightsio/xml_text_scroll_list.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/startup.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/dict_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/dict_util.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/extensions.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/hum_window_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/hum_window_base.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/in_view_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/in_view_message.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/lang.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/list_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/list_util.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/log.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/node_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/node_type.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/path.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/progress_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/progress_window.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/readonly.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/selection_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/selection_recorder.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/str_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/str_util.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/time_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/time_recorder.py -------------------------------------------------------------------------------- /Contents/scripts/humtools/util/unexpected_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/humtools/util/unexpected_error.py -------------------------------------------------------------------------------- /Contents/scripts/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/Contents/scripts/userSetup.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageContents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/PackageContents.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hum9183/MayaHumTools/HEAD/README.md --------------------------------------------------------------------------------