├── addons └── humanizer │ ├── RELEASE_NOTES │ ├── data │ ├── animations │ │ ├── animation_tree.tscn │ │ ├── animations.glb │ │ ├── animations.glb.import │ │ ├── default_bone_map.tres │ │ ├── face_animation_tree.tscn │ │ ├── face_clip_library.tres │ │ ├── face_poses.glb │ │ ├── face_poses.glb.import │ │ ├── mh_face_poses.blend │ │ └── mh_face_poses.blend.import │ ├── assets │ │ ├── presets │ │ │ └── starving_old_man.res │ │ └── targets │ │ │ ├── README.md │ │ │ └── target.json │ └── resources │ │ ├── basemesh_vertex_groups.json │ │ ├── basis.data │ │ ├── default_human_config.tres │ │ ├── humanizer_inspector_theme.tres │ │ └── mh_uv_index.dat │ ├── icon.png │ ├── icon.png.import │ ├── plugin.cfg │ ├── plugin.gd │ ├── scenes │ ├── humanizer_api.tscn │ ├── settings_popup.tscn │ ├── subscenes │ │ └── saccades.tscn │ └── tests │ │ ├── CharacterBody3D.tscn │ │ └── humanizer_stress_test.tscn │ └── scripts │ ├── core │ ├── binary_rect_packer.gd │ ├── facial_mocap.gd │ ├── humanizer.gd │ ├── humanizer_mesh_instance.gd │ ├── live_humanizer.gd │ ├── morphs.gd │ ├── physical_skeleton.gd │ ├── saccades.gd │ └── surface_uv_unwrapper.gd │ ├── overlay │ ├── 3D_noise_CPU.gd │ ├── blank.gd │ ├── fill_seams.gd │ ├── fill_seams.gdshader │ ├── gradient_map.gd │ ├── gradient_map.gdshader │ ├── image.gd │ ├── image_wrapping │ │ ├── DrawHelper.gd │ │ ├── HeatMap.gd │ │ ├── LineWrapper.gd │ │ ├── ShortestPath.gd │ │ ├── TriangleProjection.gd │ │ ├── WrapMeshData.gd │ │ ├── final.gd │ │ ├── final.tscn │ │ ├── test_project.gd │ │ └── test_project.tscn │ ├── mask.gd │ ├── mask.gdshader │ ├── mask_test.png │ ├── mask_test.png.import │ ├── overlay.gd │ ├── seeded_random.gdshaderinc │ ├── stack.gd │ ├── whorley_GPU.gd │ └── whorley_GPU.gdshader │ ├── resources │ ├── categories.gd │ ├── equipment.gd │ ├── equipment_rig_config.gd │ ├── equipment_type.gd │ ├── human_config.gd │ ├── humanizer_material.gd │ ├── humanizer_rig.gd │ ├── mhclo.gd │ ├── target_data.gd │ └── weight_cache.gd │ ├── services │ ├── API.gd │ ├── body.gd │ ├── collider.gd │ ├── equipment.gd │ ├── job_queue.gd │ ├── macros.gd │ ├── material.gd │ ├── mesh.gd │ ├── registry.gd │ ├── resources.gd │ ├── rig.gd │ ├── target.gd │ └── viewport_textures.gd │ ├── shader │ └── gradient_map.gdshader │ └── utils │ ├── HumanizerLogger.gd │ ├── camera_controls.gd │ ├── debug_utils.gd │ ├── editor_utils.gd │ ├── human_controller.gd │ ├── human_randomizer.gd │ ├── os_path.gd │ └── settings_popup.gd └── humanizer ├── equipment └── Body-Default │ ├── Body-Default.mhclo.res │ └── Body-Default.res ├── skeleton ├── default-RETARGETED.res ├── default.res ├── game_engine-RETARGETED.res ├── game_engine.res ├── mixamo-RETARGETED.res └── mixamo.res └── target ├── System_Macro_Targets.data └── System_Single_Targets.data /addons/humanizer/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/RELEASE_NOTES -------------------------------------------------------------------------------- /addons/humanizer/data/animations/animation_tree.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/animation_tree.tscn -------------------------------------------------------------------------------- /addons/humanizer/data/animations/animations.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/animations.glb -------------------------------------------------------------------------------- /addons/humanizer/data/animations/animations.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/animations.glb.import -------------------------------------------------------------------------------- /addons/humanizer/data/animations/default_bone_map.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/default_bone_map.tres -------------------------------------------------------------------------------- /addons/humanizer/data/animations/face_animation_tree.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/face_animation_tree.tscn -------------------------------------------------------------------------------- /addons/humanizer/data/animations/face_clip_library.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/face_clip_library.tres -------------------------------------------------------------------------------- /addons/humanizer/data/animations/face_poses.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/face_poses.glb -------------------------------------------------------------------------------- /addons/humanizer/data/animations/face_poses.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/face_poses.glb.import -------------------------------------------------------------------------------- /addons/humanizer/data/animations/mh_face_poses.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/mh_face_poses.blend -------------------------------------------------------------------------------- /addons/humanizer/data/animations/mh_face_poses.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/animations/mh_face_poses.blend.import -------------------------------------------------------------------------------- /addons/humanizer/data/assets/presets/starving_old_man.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/assets/presets/starving_old_man.res -------------------------------------------------------------------------------- /addons/humanizer/data/assets/targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/assets/targets/README.md -------------------------------------------------------------------------------- /addons/humanizer/data/assets/targets/target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/assets/targets/target.json -------------------------------------------------------------------------------- /addons/humanizer/data/resources/basemesh_vertex_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/resources/basemesh_vertex_groups.json -------------------------------------------------------------------------------- /addons/humanizer/data/resources/basis.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/resources/basis.data -------------------------------------------------------------------------------- /addons/humanizer/data/resources/default_human_config.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/resources/default_human_config.tres -------------------------------------------------------------------------------- /addons/humanizer/data/resources/humanizer_inspector_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/resources/humanizer_inspector_theme.tres -------------------------------------------------------------------------------- /addons/humanizer/data/resources/mh_uv_index.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/data/resources/mh_uv_index.dat -------------------------------------------------------------------------------- /addons/humanizer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/icon.png -------------------------------------------------------------------------------- /addons/humanizer/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/icon.png.import -------------------------------------------------------------------------------- /addons/humanizer/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/plugin.cfg -------------------------------------------------------------------------------- /addons/humanizer/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/plugin.gd -------------------------------------------------------------------------------- /addons/humanizer/scenes/humanizer_api.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scenes/humanizer_api.tscn -------------------------------------------------------------------------------- /addons/humanizer/scenes/settings_popup.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scenes/settings_popup.tscn -------------------------------------------------------------------------------- /addons/humanizer/scenes/subscenes/saccades.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scenes/subscenes/saccades.tscn -------------------------------------------------------------------------------- /addons/humanizer/scenes/tests/CharacterBody3D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scenes/tests/CharacterBody3D.tscn -------------------------------------------------------------------------------- /addons/humanizer/scenes/tests/humanizer_stress_test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scenes/tests/humanizer_stress_test.tscn -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/binary_rect_packer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/binary_rect_packer.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/facial_mocap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/facial_mocap.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/humanizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/humanizer.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/humanizer_mesh_instance.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/humanizer_mesh_instance.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/live_humanizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/live_humanizer.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/morphs.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/morphs.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/physical_skeleton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/physical_skeleton.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/saccades.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/saccades.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/core/surface_uv_unwrapper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/core/surface_uv_unwrapper.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/3D_noise_CPU.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/3D_noise_CPU.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/blank.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/blank.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/fill_seams.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/fill_seams.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/fill_seams.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/fill_seams.gdshader -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/gradient_map.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/gradient_map.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/gradient_map.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/gradient_map.gdshader -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/DrawHelper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/DrawHelper.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/HeatMap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/HeatMap.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/LineWrapper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/LineWrapper.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/ShortestPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/ShortestPath.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/TriangleProjection.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/TriangleProjection.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/WrapMeshData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/WrapMeshData.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/final.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/final.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/final.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/final.tscn -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/test_project.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/test_project.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/image_wrapping/test_project.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/image_wrapping/test_project.tscn -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/mask.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/mask.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/mask.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/mask.gdshader -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/mask_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/mask_test.png -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/mask_test.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/mask_test.png.import -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/overlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/overlay.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/seeded_random.gdshaderinc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/stack.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/stack.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/whorley_GPU.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/whorley_GPU.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/overlay/whorley_GPU.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/overlay/whorley_GPU.gdshader -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/categories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/categories.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/equipment.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/equipment.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/equipment_rig_config.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/equipment_rig_config.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/equipment_type.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/equipment_type.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/human_config.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/human_config.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/humanizer_material.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/humanizer_material.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/humanizer_rig.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/humanizer_rig.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/mhclo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/mhclo.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/target_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/target_data.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/resources/weight_cache.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/resources/weight_cache.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/API.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/API.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/body.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/body.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/collider.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/collider.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/equipment.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/equipment.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/job_queue.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/job_queue.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/macros.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/macros.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/material.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/material.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/mesh.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/mesh.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/registry.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/registry.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/resources.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/resources.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/rig.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/rig.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/target.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/target.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/services/viewport_textures.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/services/viewport_textures.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/shader/gradient_map.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/shader/gradient_map.gdshader -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/HumanizerLogger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/HumanizerLogger.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/camera_controls.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/camera_controls.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/debug_utils.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/debug_utils.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/editor_utils.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/editor_utils.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/human_controller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/human_controller.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/human_randomizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/human_randomizer.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/os_path.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/os_path.gd -------------------------------------------------------------------------------- /addons/humanizer/scripts/utils/settings_popup.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/addons/humanizer/scripts/utils/settings_popup.gd -------------------------------------------------------------------------------- /humanizer/equipment/Body-Default/Body-Default.mhclo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/equipment/Body-Default/Body-Default.mhclo.res -------------------------------------------------------------------------------- /humanizer/equipment/Body-Default/Body-Default.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/equipment/Body-Default/Body-Default.res -------------------------------------------------------------------------------- /humanizer/skeleton/default-RETARGETED.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/default-RETARGETED.res -------------------------------------------------------------------------------- /humanizer/skeleton/default.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/default.res -------------------------------------------------------------------------------- /humanizer/skeleton/game_engine-RETARGETED.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/game_engine-RETARGETED.res -------------------------------------------------------------------------------- /humanizer/skeleton/game_engine.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/game_engine.res -------------------------------------------------------------------------------- /humanizer/skeleton/mixamo-RETARGETED.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/mixamo-RETARGETED.res -------------------------------------------------------------------------------- /humanizer/skeleton/mixamo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/skeleton/mixamo.res -------------------------------------------------------------------------------- /humanizer/target/System_Macro_Targets.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/target/System_Macro_Targets.data -------------------------------------------------------------------------------- /humanizer/target/System_Single_Targets.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NitroxNova/humanizer/HEAD/humanizer/target/System_Single_Targets.data --------------------------------------------------------------------------------