├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG_NON_ASCII_FIX.md ├── LICENSE ├── README.md ├── __init__.py ├── blender_manifest.toml ├── core ├── __init__.py ├── addon_preferences.py ├── armature_validation.py ├── auto_load.py ├── common.py ├── dictionaries.py ├── enhanced_dictionaries.py ├── exporters │ └── __init__.py ├── importers │ ├── __init__.py │ └── importer.py ├── logging_setup.py ├── mmd │ ├── __init__.py │ ├── bpyutils.py │ ├── core │ │ ├── __init__.py │ │ ├── bone.py │ │ ├── camera.py │ │ ├── exceptions.py │ │ ├── lamp.py │ │ ├── material.py │ │ ├── model.py │ │ ├── morph.py │ │ ├── pmx │ │ │ ├── __init__.py │ │ │ └── importer.py │ │ ├── rigid_body.py │ │ ├── sdef.py │ │ ├── shader.py │ │ ├── translations.py │ │ └── vmd │ │ │ ├── __init__.py │ │ │ └── importer.py │ ├── cycles_converter.py │ ├── operators │ │ ├── __init__.py │ │ ├── fileio.py │ │ ├── material.py │ │ ├── misc.py │ │ ├── model.py │ │ ├── model_edit.py │ │ ├── morph.py │ │ ├── rigid_body.py │ │ ├── sdef.py │ │ ├── translations.py │ │ └── view.py │ ├── properties │ │ ├── __init__.py │ │ ├── material.py │ │ ├── morph.py │ │ ├── pose_bone.py │ │ ├── rigid_body.py │ │ ├── root.py │ │ └── translations.py │ ├── translations.py │ └── utils.py ├── packer │ └── rectangle_packer.py ├── properties.py ├── resonite_loader │ ├── common.py │ ├── resonite_animx.py │ └── resonite_types.py ├── resonite_utils.py ├── translation_manager.py ├── translation_service.py ├── translations.py ├── updater.py └── vrm_unity_converter.py ├── functions ├── __init__.py ├── atlas_materials.py ├── custom_tools │ ├── __init__.py │ ├── armature_merging.py │ ├── force_apply_modifier.py │ └── mesh_attachment.py ├── eye_tracking.py ├── optimization │ ├── __init__.py │ ├── materials_tools.py │ ├── mesh_tools.py │ └── remove_doubles.py ├── pose_mode.py ├── tools │ ├── __init__.py │ ├── additional_tools.py │ ├── apply_shapekey_to_basis.py │ ├── bone_tools.py │ ├── collider_removal.py │ ├── general_mesh_tools.py │ ├── merge_tools.py │ ├── mesh_separation.py │ ├── rigify_converter.py │ ├── standardize_armature.py │ ├── uv_tools.py │ └── vrm_unity_conversion.py └── visemes.py ├── resources └── translations │ ├── en_US.json │ ├── ja_JP.json │ └── ko_KR.json ├── ui ├── __init__.py ├── atlas_materials_panel.py ├── custom_avatar_panel.py ├── eye_tracking_panel.py ├── main_panel.py ├── optimization_panel.py ├── panel_layout.py ├── quick_access_panel.py ├── search_operators.py ├── settings_panel.py ├── tools_panel.py ├── translation_panel.py ├── ui_utils.py ├── uv_panel.py ├── uv_tools.py ├── visemes_panel.py └── vrm_unity_panel.py └── wheels ├── lz4-4.4.5-cp311-cp311-macosx_10_9_x86_64.whl ├── lz4-4.4.5-cp311-cp311-macosx_11_0_arm64.whl ├── lz4-4.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl └── lz4-4.4.5-cp311-cp311-win_amd64.whl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG_NON_ASCII_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/CHANGELOG_NON_ASCII_FIX.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/addon_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/addon_preferences.py -------------------------------------------------------------------------------- /core/armature_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/armature_validation.py -------------------------------------------------------------------------------- /core/auto_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/auto_load.py -------------------------------------------------------------------------------- /core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/common.py -------------------------------------------------------------------------------- /core/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/dictionaries.py -------------------------------------------------------------------------------- /core/enhanced_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/enhanced_dictionaries.py -------------------------------------------------------------------------------- /core/exporters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/importers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/importers/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/importers/importer.py -------------------------------------------------------------------------------- /core/logging_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/logging_setup.py -------------------------------------------------------------------------------- /core/mmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/__init__.py -------------------------------------------------------------------------------- /core/mmd/bpyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/bpyutils.py -------------------------------------------------------------------------------- /core/mmd/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/__init__.py -------------------------------------------------------------------------------- /core/mmd/core/bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/bone.py -------------------------------------------------------------------------------- /core/mmd/core/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/camera.py -------------------------------------------------------------------------------- /core/mmd/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/exceptions.py -------------------------------------------------------------------------------- /core/mmd/core/lamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/lamp.py -------------------------------------------------------------------------------- /core/mmd/core/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/material.py -------------------------------------------------------------------------------- /core/mmd/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/model.py -------------------------------------------------------------------------------- /core/mmd/core/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/morph.py -------------------------------------------------------------------------------- /core/mmd/core/pmx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/pmx/__init__.py -------------------------------------------------------------------------------- /core/mmd/core/pmx/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/pmx/importer.py -------------------------------------------------------------------------------- /core/mmd/core/rigid_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/rigid_body.py -------------------------------------------------------------------------------- /core/mmd/core/sdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/sdef.py -------------------------------------------------------------------------------- /core/mmd/core/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/shader.py -------------------------------------------------------------------------------- /core/mmd/core/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/translations.py -------------------------------------------------------------------------------- /core/mmd/core/vmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/vmd/__init__.py -------------------------------------------------------------------------------- /core/mmd/core/vmd/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/core/vmd/importer.py -------------------------------------------------------------------------------- /core/mmd/cycles_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/cycles_converter.py -------------------------------------------------------------------------------- /core/mmd/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/__init__.py -------------------------------------------------------------------------------- /core/mmd/operators/fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/fileio.py -------------------------------------------------------------------------------- /core/mmd/operators/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/material.py -------------------------------------------------------------------------------- /core/mmd/operators/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/misc.py -------------------------------------------------------------------------------- /core/mmd/operators/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/model.py -------------------------------------------------------------------------------- /core/mmd/operators/model_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/model_edit.py -------------------------------------------------------------------------------- /core/mmd/operators/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/morph.py -------------------------------------------------------------------------------- /core/mmd/operators/rigid_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/rigid_body.py -------------------------------------------------------------------------------- /core/mmd/operators/sdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/sdef.py -------------------------------------------------------------------------------- /core/mmd/operators/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/translations.py -------------------------------------------------------------------------------- /core/mmd/operators/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/operators/view.py -------------------------------------------------------------------------------- /core/mmd/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/__init__.py -------------------------------------------------------------------------------- /core/mmd/properties/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/material.py -------------------------------------------------------------------------------- /core/mmd/properties/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/morph.py -------------------------------------------------------------------------------- /core/mmd/properties/pose_bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/pose_bone.py -------------------------------------------------------------------------------- /core/mmd/properties/rigid_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/rigid_body.py -------------------------------------------------------------------------------- /core/mmd/properties/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/root.py -------------------------------------------------------------------------------- /core/mmd/properties/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/properties/translations.py -------------------------------------------------------------------------------- /core/mmd/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/translations.py -------------------------------------------------------------------------------- /core/mmd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/mmd/utils.py -------------------------------------------------------------------------------- /core/packer/rectangle_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/packer/rectangle_packer.py -------------------------------------------------------------------------------- /core/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/properties.py -------------------------------------------------------------------------------- /core/resonite_loader/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/resonite_loader/common.py -------------------------------------------------------------------------------- /core/resonite_loader/resonite_animx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/resonite_loader/resonite_animx.py -------------------------------------------------------------------------------- /core/resonite_loader/resonite_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/resonite_loader/resonite_types.py -------------------------------------------------------------------------------- /core/resonite_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/resonite_utils.py -------------------------------------------------------------------------------- /core/translation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/translation_manager.py -------------------------------------------------------------------------------- /core/translation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/translation_service.py -------------------------------------------------------------------------------- /core/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/translations.py -------------------------------------------------------------------------------- /core/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/updater.py -------------------------------------------------------------------------------- /core/vrm_unity_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/core/vrm_unity_converter.py -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/atlas_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/atlas_materials.py -------------------------------------------------------------------------------- /functions/custom_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/custom_tools/armature_merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/custom_tools/armature_merging.py -------------------------------------------------------------------------------- /functions/custom_tools/force_apply_modifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/custom_tools/force_apply_modifier.py -------------------------------------------------------------------------------- /functions/custom_tools/mesh_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/custom_tools/mesh_attachment.py -------------------------------------------------------------------------------- /functions/eye_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/eye_tracking.py -------------------------------------------------------------------------------- /functions/optimization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/optimization/materials_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/optimization/materials_tools.py -------------------------------------------------------------------------------- /functions/optimization/mesh_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/optimization/mesh_tools.py -------------------------------------------------------------------------------- /functions/optimization/remove_doubles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/optimization/remove_doubles.py -------------------------------------------------------------------------------- /functions/pose_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/pose_mode.py -------------------------------------------------------------------------------- /functions/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/tools/additional_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/additional_tools.py -------------------------------------------------------------------------------- /functions/tools/apply_shapekey_to_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/apply_shapekey_to_basis.py -------------------------------------------------------------------------------- /functions/tools/bone_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/bone_tools.py -------------------------------------------------------------------------------- /functions/tools/collider_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/collider_removal.py -------------------------------------------------------------------------------- /functions/tools/general_mesh_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/general_mesh_tools.py -------------------------------------------------------------------------------- /functions/tools/merge_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/merge_tools.py -------------------------------------------------------------------------------- /functions/tools/mesh_separation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/mesh_separation.py -------------------------------------------------------------------------------- /functions/tools/rigify_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/rigify_converter.py -------------------------------------------------------------------------------- /functions/tools/standardize_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/standardize_armature.py -------------------------------------------------------------------------------- /functions/tools/uv_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/uv_tools.py -------------------------------------------------------------------------------- /functions/tools/vrm_unity_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/tools/vrm_unity_conversion.py -------------------------------------------------------------------------------- /functions/visemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/functions/visemes.py -------------------------------------------------------------------------------- /resources/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/resources/translations/en_US.json -------------------------------------------------------------------------------- /resources/translations/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/resources/translations/ja_JP.json -------------------------------------------------------------------------------- /resources/translations/ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/resources/translations/ko_KR.json -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/atlas_materials_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/atlas_materials_panel.py -------------------------------------------------------------------------------- /ui/custom_avatar_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/custom_avatar_panel.py -------------------------------------------------------------------------------- /ui/eye_tracking_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/eye_tracking_panel.py -------------------------------------------------------------------------------- /ui/main_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/main_panel.py -------------------------------------------------------------------------------- /ui/optimization_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/optimization_panel.py -------------------------------------------------------------------------------- /ui/panel_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/panel_layout.py -------------------------------------------------------------------------------- /ui/quick_access_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/quick_access_panel.py -------------------------------------------------------------------------------- /ui/search_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/search_operators.py -------------------------------------------------------------------------------- /ui/settings_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/settings_panel.py -------------------------------------------------------------------------------- /ui/tools_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/tools_panel.py -------------------------------------------------------------------------------- /ui/translation_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/translation_panel.py -------------------------------------------------------------------------------- /ui/ui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/ui_utils.py -------------------------------------------------------------------------------- /ui/uv_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/uv_panel.py -------------------------------------------------------------------------------- /ui/uv_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/uv_tools.py -------------------------------------------------------------------------------- /ui/visemes_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/visemes_panel.py -------------------------------------------------------------------------------- /ui/vrm_unity_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/ui/vrm_unity_panel.py -------------------------------------------------------------------------------- /wheels/lz4-4.4.5-cp311-cp311-macosx_10_9_x86_64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/wheels/lz4-4.4.5-cp311-cp311-macosx_10_9_x86_64.whl -------------------------------------------------------------------------------- /wheels/lz4-4.4.5-cp311-cp311-macosx_11_0_arm64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/wheels/lz4-4.4.5-cp311-cp311-macosx_11_0_arm64.whl -------------------------------------------------------------------------------- /wheels/lz4-4.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/wheels/lz4-4.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -------------------------------------------------------------------------------- /wheels/lz4-4.4.5-cp311-cp311-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamneoneko/Avatar-Toolkit/HEAD/wheels/lz4-4.4.5-cp311-cp311-win_amd64.whl --------------------------------------------------------------------------------