├── .gitattributes ├── Source └── Holographic_AI_Core │ ├── Private │ ├── HAIC_Emotions.cpp │ ├── NN_Memory.cpp │ ├── Neural_Network.cpp │ └── HAIC_Controller.cpp │ └── Holographic_AI_Core.h ├── Content ├── VRTemplate │ ├── Audio │ │ ├── Fire01.uasset │ │ └── Fire_Cue.uasset │ ├── Input │ │ ├── IMC_Hands.uasset │ │ ├── IMC_Menu.uasset │ │ ├── IMC_Weapon.uasset │ │ ├── Actions │ │ │ ├── IA_Move.uasset │ │ │ ├── IA_Turn.uasset │ │ │ ├── IA_Grab_Left.uasset │ │ │ ├── IA_Grab_Right.uasset │ │ │ ├── IA_Shoot_Left.uasset │ │ │ ├── IA_Shoot_Right.uasset │ │ │ ├── IA_Menu_Cursor_Left.uasset │ │ │ ├── IA_Menu_Cursor_Right.uasset │ │ │ ├── IA_Menu_Interact_Left.uasset │ │ │ ├── IA_Menu_Interact_Right.uasset │ │ │ ├── IA_Menu_Toggle_Left.uasset │ │ │ ├── IA_Menu_Toggle_Right.uasset │ │ │ └── Hands │ │ │ │ ├── IA_Hand_Grasp_Left.uasset │ │ │ │ ├── IA_Hand_Grasp_Right.uasset │ │ │ │ ├── IA_Hand_Point_Left.uasset │ │ │ │ ├── IA_Hand_Point_Right.uasset │ │ │ │ ├── IA_Hand_ThumbUp_Left.uasset │ │ │ │ ├── IA_Hand_ThumbUp_Right.uasset │ │ │ │ ├── IA_Hand_IndexCurl_Left.uasset │ │ │ │ └── IA_Hand_IndexCurl_Right.uasset │ │ ├── IMC_Default.uasset │ │ ├── IMC_Weapon_Left.uasset │ │ ├── PMI_VRTemplate.uasset │ │ ├── IMC_Weapon_Right.uasset │ │ └── B_InputModifier_XAxisPositiveOnly.uasset │ ├── Textures │ │ └── T_Grid.uasset │ ├── Blueprints │ │ ├── GrabType.uasset │ │ ├── Menu.uasset │ │ ├── Pistol.uasset │ │ ├── VRPawn.uasset │ │ ├── GrabComponent.uasset │ │ ├── Projectile.uasset │ │ ├── VRGameMode.uasset │ │ ├── WidgetMenu.uasset │ │ ├── Grabbable_SmallCube.uasset │ │ ├── VRTeleportVisualizer.uasset │ │ └── B_AssetGuideline_VRTemplate.uasset │ ├── Materials │ │ ├── M_VRCursor.uasset │ │ ├── MI_Grid_Accent.uasset │ │ ├── MI_Projectile.uasset │ │ ├── M_GridRotation.uasset │ │ ├── M_Projectile.uasset │ │ ├── M_TeleportNoise.uasset │ │ ├── MI_Grid_Default.uasset │ │ ├── M_TeleportCylinder.uasset │ │ ├── Functions │ │ │ └── MF_OccludedPixels.uasset │ │ └── DefaultRibbonMaterial_NoGradient.uasset │ ├── VFX │ │ ├── NPC_VRTemplate.uasset │ │ ├── NS_MenuLaser.uasset │ │ ├── NS_TeleportRing.uasset │ │ ├── NS_PlayAreaBounds.uasset │ │ └── NS_TeleportTrace.uasset │ └── Haptics │ │ ├── GrabHapticEffect.uasset │ │ └── PistolFireHapticEffect.uasset ├── LevelPrototyping │ ├── Meshes │ │ ├── SM_Cube.uasset │ │ ├── SM_Ramp.uasset │ │ ├── SM_Cylinder.uasset │ │ ├── SM_ChamferCube.uasset │ │ └── SM_QuarterCylinder.uasset │ ├── Materials │ │ ├── M_Solid.uasset │ │ ├── MF_ProcGrid.uasset │ │ ├── MI_Solid_Blue.uasset │ │ ├── M_PrototypeGrid.uasset │ │ ├── MI_PrototypeGrid_Gray.uasset │ │ ├── MI_PrototypeGrid_Gray_02.uasset │ │ └── MI_PrototypeGrid_TopDark.uasset │ └── Textures │ │ └── T_GridChecker_A.uasset ├── Holographic_AI_Framework │ ├── AI │ │ ├── HAIC_EQS.uasset │ │ ├── NN_Memory.uasset │ │ ├── HolographicAI.uasset │ │ ├── Neural_Network.uasset │ │ └── HAIC_Controller.uasset │ ├── Levels │ │ └── HolographicLevelBase.umap │ └── MetaHumans │ │ ├── Eva │ │ ├── BP_Eva.uasset │ │ ├── Body │ │ │ └── BodyBaseColor.uasset │ │ ├── Face │ │ │ ├── Eva_FaceMesh.uasset │ │ │ ├── FaceColor_CM1.uasset │ │ │ ├── FaceColor_CM2.uasset │ │ │ ├── FaceColor_CM3.uasset │ │ │ ├── FaceColor_MAIN.uasset │ │ │ ├── FaceCavity_MAIN.uasset │ │ │ ├── FaceColor_MAIN_LOD.uasset │ │ │ ├── FaceEyeLipstickMask.uasset │ │ │ ├── FaceNormal_MAIN.uasset │ │ │ ├── FaceNormal_WM1.uasset │ │ │ ├── FaceNormal_WM2.uasset │ │ │ ├── FaceNormal_WM3.uasset │ │ │ ├── FaceRoughness_MAIN.uasset │ │ │ ├── T_BakedNormal_LOD3.uasset │ │ │ ├── T_BakedNormal_LOD4.uasset │ │ │ ├── T_BakedNormal_LOD5.uasset │ │ │ ├── FaceBakedGroomAttributeMap.uasset │ │ │ ├── FaceNormal_MAIN_LOD.uasset │ │ │ ├── FaceRoughness_MAIN_LOD.uasset │ │ │ ├── FaceFoundationBlusherMask.uasset │ │ │ ├── FaceBakedGroomAttributeMap_LOD.uasset │ │ │ ├── Materials │ │ │ │ ├── MI_EyeRefractive_Inst_L.uasset │ │ │ │ ├── MI_EyeRefractive_Inst_R.uasset │ │ │ │ └── Baked │ │ │ │ │ ├── MI_HeadSynthesized_Baked.uasset │ │ │ │ │ ├── MI_HeadSynthesized_Baked_LOD1.uasset │ │ │ │ │ ├── MI_HeadSynthesized_Baked_LOD2.uasset │ │ │ │ │ ├── MI_HeadSynthesized_Baked_LOD3.uasset │ │ │ │ │ ├── MI_HeadSynthesized_Baked_LOD4.uasset │ │ │ │ │ └── MI_HeadSynthesized_Baked_LOD5.uasset │ │ │ ├── FaceBakedGroomRootTipGradientRegionMasks.uasset │ │ │ └── FaceBakedGroomRootTipGradientRegionMasks_LOD.uasset │ │ ├── Materials │ │ │ ├── MI_Hair.uasset │ │ │ ├── MI_Hair1.uasset │ │ │ ├── MI_Hair2.uasset │ │ │ ├── MI_Facial_Hair.uasset │ │ │ ├── MI_Hair_Cards.uasset │ │ │ ├── MI_Hair_Helmet.uasset │ │ │ ├── MI_PeachFuzz.uasset │ │ │ ├── M_BodySynthesized.uasset │ │ │ ├── Sweater │ │ │ │ └── M_top_sweater.uasset │ │ │ ├── Flipflops │ │ │ │ └── M_shs_flipflops.uasset │ │ │ ├── M_EyeLash_HigherLODs_Inst.uasset │ │ │ ├── M_EyelashLowerLODs_Inst.uasset │ │ │ ├── M_TeethCharacterCreator_Inst.uasset │ │ │ └── Yogapants │ │ │ │ └── F_unw_btm_yogaPants_full.uasset │ │ ├── FemaleHair │ │ │ ├── Hair │ │ │ │ ├── Hair_S_Updo.uasset │ │ │ │ ├── Eyebrows_M_Thick.uasset │ │ │ │ ├── Eyelashes_L_Curl.uasset │ │ │ │ ├── Peachfuzz_M_Thin.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group0_LOD0.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group0_LOD1.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group0_LOD2.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group0_LOD3.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group0_LOD4.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group1_LOD0.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group1_LOD1.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group1_LOD2.uasset │ │ │ │ ├── Hair_S_Updo_CardsMesh_Group1_LOD3.uasset │ │ │ │ └── Eyebrows_M_Thick_CardsMesh_Group0_LOD0.uasset │ │ │ └── Helmets │ │ │ │ ├── Hair_S_Updo_Helmet_LOD5.uasset │ │ │ │ ├── Hair_S_Updo_Helmet_LOD6.uasset │ │ │ │ └── Hair_S_Updo_Helmet_LOD7.uasset │ │ ├── Previews │ │ │ └── BP_Eva_PreviewMeshCollection.uasset │ │ └── Female │ │ │ └── Tall │ │ │ └── UnderWeight │ │ │ └── Body │ │ │ └── f_tal_unw_body.uasset │ │ └── Common │ │ ├── Face │ │ ├── Face_AnimBP.uasset │ │ ├── Face_Archetype.uasset │ │ ├── Neck_CtrlRig.uasset │ │ ├── Textures │ │ │ ├── T_Eye_N.uasset │ │ │ ├── T_Sclera_D.uasset │ │ │ ├── T_Sclera_N.uasset │ │ │ ├── T_Veins_D.uasset │ │ │ ├── T_lacrimal_h.uasset │ │ │ ├── T_lacrimal_n.uasset │ │ │ ├── Default_SecColors.uasset │ │ │ ├── T_MH_BentNormal_AO.uasset │ │ │ ├── T_TilingNoise_001.uasset │ │ │ ├── T_DefaultTextureLinear.uasset │ │ │ ├── T_iris_color_picker.uasset │ │ │ ├── T_sclera_tint_picker.uasset │ │ │ ├── T_1x1_BakedGroomTextureBase.uasset │ │ │ ├── T_EyeMidPlaneDisplacement.uasset │ │ │ ├── IrisTextures │ │ │ │ ├── iris_001 │ │ │ │ │ ├── T_Iris_A_H.uasset │ │ │ │ │ └── T_Iris_A_M.uasset │ │ │ │ └── iris_003 │ │ │ │ │ ├── T_Iris_A_H.uasset │ │ │ │ │ └── T_Iris_A_M.uasset │ │ │ ├── Utilities │ │ │ │ └── AnimMasks │ │ │ │ │ ├── T_head_wm13_msk_01.uasset │ │ │ │ │ ├── T_head_wm1_msk_01.uasset │ │ │ │ │ ├── T_head_wm1_msk_02.uasset │ │ │ │ │ ├── T_head_wm1_msk_03.uasset │ │ │ │ │ ├── T_head_wm1_msk_04.uasset │ │ │ │ │ ├── T_head_wm1_msk_04a.uasset │ │ │ │ │ ├── T_head_wm2_msk_01.uasset │ │ │ │ │ ├── T_head_wm2_msk_02.uasset │ │ │ │ │ ├── T_head_wm2_msk_03.uasset │ │ │ │ │ ├── T_head_wm2_msk_03a.uasset │ │ │ │ │ ├── T_head_wm3_msk_01.uasset │ │ │ │ │ ├── T_head_wm3_msk_02.uasset │ │ │ │ │ └── T_head_wm_msk_Array.uasset │ │ │ └── RoughnessRegionsMasks │ │ │ │ ├── T_RoughnessRegions_003.uasset │ │ │ │ ├── T_RoughnessRegions_006.uasset │ │ │ │ └── T_RoughnessRegions_007.uasset │ │ ├── Face_Archetype_Physics.uasset │ │ ├── Face_PostProcess_AnimBP.uasset │ │ ├── Materials │ │ │ ├── M_Cartilage.uasset │ │ │ ├── M_EyeOcclusion.uasset │ │ │ ├── M_EyeRefractive.uasset │ │ │ ├── M_lacrimal_fluid.uasset │ │ │ ├── Baked │ │ │ │ ├── M_Head_Baked.uasset │ │ │ │ ├── MI_HeadSynthesized_Baked.uasset │ │ │ │ ├── MI_HeadSynthesized_Baked_LOD1.uasset │ │ │ │ └── MI_HeadSynthesized_Baked_LOD2.uasset │ │ │ ├── MI_EyeOcclusion_Inst.uasset │ │ │ ├── MI_EyeRefractive_Inst_L.uasset │ │ │ ├── MI_EyeRefractive_Inst_R.uasset │ │ │ └── MI_lacrimal_fluid_Inst.uasset │ │ ├── simple_face_CtrlRig.uasset │ │ ├── Face_Archetype_LODSettings.uasset │ │ ├── Face_Archetype_Skeleton.uasset │ │ ├── Face_ControlBoard_CtrlRig.uasset │ │ ├── SubsurfaceProfiles │ │ │ ├── SSP_Head.uasset │ │ │ └── SSP_Eye_Inner.uasset │ │ ├── MaterialFunctions │ │ │ ├── MF_AnimatedMaps.uasset │ │ │ ├── Eye │ │ │ │ ├── MF_EyeRefraction.uasset │ │ │ │ ├── MF_IrisGenerator.uasset │ │ │ │ └── MF_ParallaxOcclusionMappingEye.uasset │ │ │ └── Head │ │ │ │ ├── MF_HeadMask_01.uasset │ │ │ │ ├── MF_HeadMask_01A.uasset │ │ │ │ ├── MF_HeadMask_02.uasset │ │ │ │ ├── MF_HeadMask_02A.uasset │ │ │ │ ├── MF_HeadMask_03.uasset │ │ │ │ ├── MF_HeadMask_03A.uasset │ │ │ │ ├── MF_RoughnessMult.uasset │ │ │ │ └── MF_HeadMask_TexArraySample.uasset │ │ └── ArtistDelights │ │ │ └── SkinAccents │ │ │ └── T_SkinAccentRegions_002.uasset │ │ ├── Materials │ │ ├── MI_Hair.uasset │ │ ├── M_Teeth.uasset │ │ ├── MF_Hair_Color.uasset │ │ ├── MF_Variation.uasset │ │ ├── MI_Hair_Cards.uasset │ │ ├── MI_PeachFuzz.uasset │ │ ├── MPC_HairColor.uasset │ │ ├── M_BodySkin.uasset │ │ ├── M_Facial_Hair.uasset │ │ ├── M_hair_v4.uasset │ │ ├── T_Black_Linear.uasset │ │ ├── MF_HairAnisotropic.uasset │ │ ├── MF_Passthrough.uasset │ │ ├── MF_RedHairBoost.uasset │ │ ├── MI_Facial_Hair.uasset │ │ ├── MI_Hair_Helmet.uasset │ │ ├── M_BodySynthesized.uasset │ │ ├── M_Eyelashes_Cards.uasset │ │ ├── M_PeachFuzzMaster.uasset │ │ ├── M_fabric_simpler.uasset │ │ ├── Textures │ │ │ ├── skin_n.uasset │ │ │ ├── gums_div_001.uasset │ │ │ ├── Clothing │ │ │ │ ├── clothing_N.uasset │ │ │ │ ├── clothing_AO.uasset │ │ │ │ ├── DefaultMaps │ │ │ │ │ ├── black_masks.uasset │ │ │ │ │ ├── clothing_N.uasset │ │ │ │ │ └── color_spectrum.uasset │ │ │ │ ├── Macros │ │ │ │ │ ├── macro_fuzz_4k.uasset │ │ │ │ │ ├── macro_heather_04.uasset │ │ │ │ │ ├── macro_pilling_A.uasset │ │ │ │ │ ├── macro_pilling_A2.uasset │ │ │ │ │ ├── macro_pilling_N.uasset │ │ │ │ │ ├── macro_fuzz_Normal.uasset │ │ │ │ │ └── macro_pilling_2_N.uasset │ │ │ │ ├── Micros │ │ │ │ │ ├── micro_double_knit_N.uasset │ │ │ │ │ ├── micro_knit_front_AO.uasset │ │ │ │ │ ├── micro_knit_front_H.uasset │ │ │ │ │ ├── micro_knit_front_N.uasset │ │ │ │ │ └── micro_weave_denim_N.uasset │ │ │ │ └── upresTest │ │ │ │ │ └── MF_NormalStrength.uasset │ │ │ ├── T_SkinMicroNormal.uasset │ │ │ ├── T_Teeth_mouthOcc.uasset │ │ │ ├── TeethGumsNormal.uasset │ │ │ ├── TilingNoise05.uasset │ │ │ ├── gums_color_picker.uasset │ │ │ ├── plaque_color_picker.uasset │ │ │ ├── teeth_masks_001.uasset │ │ │ ├── teeth_normal_map.uasset │ │ │ ├── skin_bar_color_picker.uasset │ │ │ ├── teeth_color_map_001.uasset │ │ │ ├── teeth_color_picker_001.uasset │ │ │ └── teeth_sharpNormal_map.uasset │ │ ├── MF_Hair_ColorBlending.uasset │ │ ├── MF_Hair_SaltAndPeper.uasset │ │ ├── MF_Hair_SecondaryColors.uasset │ │ ├── M_EyelashLowerLODs_Inst.uasset │ │ ├── SP_TeethCharacterCreator.uasset │ │ ├── Sweater │ │ │ ├── M_top_sweater.uasset │ │ │ ├── top_sweater_N.uasset │ │ │ ├── top_sweater_AO.uasset │ │ │ └── top_sweater_Mask.uasset │ │ ├── DefaultTexture_LinearColor.uasset │ │ ├── Flipflops │ │ │ ├── M_shs_flipflops.uasset │ │ │ ├── shs_flipflops_AO.uasset │ │ │ ├── shs_flipflops_N.uasset │ │ │ └── shs_flipflops_Mask.uasset │ │ ├── M_EyeLash_HigherLODs_Inst.uasset │ │ ├── M_TeethCharacterCreator_Inst.uasset │ │ ├── Yogapants │ │ │ ├── btm_yogaPants_base.uasset │ │ │ ├── F_unw_btm_yogaPants_full.uasset │ │ │ └── Textures │ │ │ │ └── f_med_nrw_yogaful_slm_AO.uasset │ │ ├── M_fabric_simpler_fuzz_option.uasset │ │ ├── CasualSneakers │ │ │ ├── M_shs_casualsneakers.uasset │ │ │ ├── shs_casualsneakers_AO.uasset │ │ │ ├── shs_casualsneakers_N.uasset │ │ │ └── shs_casualsneakers_Mask.uasset │ │ └── HighlightsTextures │ │ │ └── HighlightMask_strips.uasset │ │ ├── Common │ │ ├── IK_metahuman.uasset │ │ ├── RTG_metahuman.uasset │ │ ├── f_med_nrw_preview.uasset │ │ ├── MetaHuman_ControlRig.uasset │ │ ├── Utilities │ │ │ ├── MH_CR_Picker.uasset │ │ │ └── Picker_Assets │ │ │ │ ├── refresh.uasset │ │ │ │ ├── refresh_down.uasset │ │ │ │ ├── epic_games_logo.uasset │ │ │ │ ├── grey_round_button.uasset │ │ │ │ └── refresh_over.uasset │ │ ├── f_tal_unw_body_preview.uasset │ │ ├── MetaHuman_Clothing_LODSettings.uasset │ │ ├── Mocap │ │ │ ├── mh_arkit_mapping_anim.uasset │ │ │ └── mh_arkit_mapping_pose.uasset │ │ ├── PoseLibrary │ │ │ └── Face │ │ │ │ ├── Visemes │ │ │ │ ├── 03_Ee.uasset │ │ │ │ ├── 04_Ih.uasset │ │ │ │ ├── 05_Ay.uasset │ │ │ │ ├── 06_Eh.uasset │ │ │ │ ├── 07_Aa.uasset │ │ │ │ ├── 08_Ah.uasset │ │ │ │ ├── 09_Oh.uasset │ │ │ │ ├── 10_Oh.uasset │ │ │ │ ├── 10_Or.uasset │ │ │ │ ├── 11_Oo.uasset │ │ │ │ ├── 11_Or.uasset │ │ │ │ ├── 12_Oo.uasset │ │ │ │ ├── 15_Ch.uasset │ │ │ │ ├── 15_Ew.uasset │ │ │ │ ├── 16_Ew.uasset │ │ │ │ ├── 17_Rr.uasset │ │ │ │ ├── 18_Rr.uasset │ │ │ │ ├── 18_Uh.uasset │ │ │ │ ├── 19_Uh.uasset │ │ │ │ ├── 19_Ur.uasset │ │ │ │ ├── 20_FV.uasset │ │ │ │ ├── 21_FV.uasset │ │ │ │ ├── 22_MBP.uasset │ │ │ │ ├── 23_MBP.uasset │ │ │ │ ├── 00_Neutral.uasset │ │ │ │ ├── 01_TDS-Ah-.uasset │ │ │ │ ├── 01_TDS-Ah.uasset │ │ │ │ ├── 02_TDS-Ee.uasset │ │ │ │ ├── 12_Ww-Oo-.uasset │ │ │ │ ├── 13_KGY_TDS.uasset │ │ │ │ ├── 13_Ww-Oo.uasset │ │ │ │ ├── 13_Ww_Low.uasset │ │ │ │ ├── 14_ChJjSh.uasset │ │ │ │ ├── 14_KGY.uasset │ │ │ │ ├── 14_KGY_TDS.uasset │ │ │ │ ├── 16_Ww-Ew-.uasset │ │ │ │ ├── 17_Ww-Ew.uasset │ │ │ │ ├── 17_Ww-High.uasset │ │ │ │ ├── 19_FV-Or-.uasset │ │ │ │ ├── 20_FV-Or.uasset │ │ │ │ ├── 21_FV-Ee-.uasset │ │ │ │ ├── 22_FV-Ee.uasset │ │ │ │ ├── 24_MBP.uasset │ │ │ │ ├── 25_MBP-Low.uasset │ │ │ │ ├── 02_TDS_KGY-Ee-.uasset │ │ │ │ ├── 02_TDS_KGY-Ee.uasset │ │ │ │ ├── 15_ChJjSh_TDS.uasset │ │ │ │ ├── 23_MBP-Wide.uasset │ │ │ │ ├── 23_Tongue_LNTDS.uasset │ │ │ │ ├── 24_Tongue-LNTDS.uasset │ │ │ │ ├── 24_Tongue_Th.uasset │ │ │ │ ├── 25_Tongue-Th.uasset │ │ │ │ ├── 25_Tongue_KGY.uasset │ │ │ │ ├── 26_Tongue-KGY.uasset │ │ │ │ ├── 26_Tongue_Rr.uasset │ │ │ │ ├── 27_MBP-Narrow.uasset │ │ │ │ ├── 27_Tongue-Rr.uasset │ │ │ │ └── 26_MBP-NarrowLow.uasset │ │ │ │ └── Expressions │ │ │ │ ├── Joy-03_Joy.uasset │ │ │ │ ├── Anger-03_Anger.uasset │ │ │ │ ├── Anger-04_Rage.uasset │ │ │ │ ├── Fear-01_Concern.uasset │ │ │ │ ├── Fear-02_Anxiety.uasset │ │ │ │ ├── Fear-03_Fear.uasset │ │ │ │ ├── Fear-04_Terror.uasset │ │ │ │ ├── Joy-02_Amusement.uasset │ │ │ │ ├── Joy-04_Laughter.uasset │ │ │ │ ├── Sadness-04_Grief.uasset │ │ │ │ ├── Anger-01_Sternness.uasset │ │ │ │ ├── Anger-02_Indignation.uasset │ │ │ │ ├── Disgust-01_Disdain.uasset │ │ │ │ ├── Disgust-02_Aversion.uasset │ │ │ │ ├── Disgust-03_Disgust.uasset │ │ │ │ ├── Disgust-04_Revulsion.uasset │ │ │ │ ├── Joy-01_Satisfaction.uasset │ │ │ │ ├── Sadness-01_Dejection.uasset │ │ │ │ ├── Sadness-02_Melancholy.uasset │ │ │ │ ├── Sadness-03_Sadness.uasset │ │ │ │ ├── Surprise-01_Alertness.uasset │ │ │ │ ├── Surprise-02_Wonder.uasset │ │ │ │ ├── Surprise-03_Surprise.uasset │ │ │ │ └── Surprise-04_Shock.uasset │ │ ├── RTG_metahuman_base_skel_AnimBP.uasset │ │ └── metahuman_proc_ControlRig.uasset │ │ ├── Controls │ │ ├── MHGizmoLibrary.uasset │ │ ├── faceboard_2x.uasset │ │ ├── convergence_3l.uasset │ │ ├── faceboard_followGrp.uasset │ │ └── M_RigControlActor_Black.uasset │ │ ├── Fonts │ │ ├── RobotoCondensed.uasset │ │ ├── RobotoCondensed-Bold.uasset │ │ ├── RobotoCondensed-Light.uasset │ │ ├── RobotoCondensed-BoldItalic.uasset │ │ ├── RobotoCondensed-Regular.uasset │ │ └── RobotoCondensed-LightItalic.uasset │ │ ├── Textures │ │ ├── T_Black_Linear.uasset │ │ ├── T_BodyHideMask.uasset │ │ ├── T_FlatNormal.uasset │ │ └── DefaultTexture_VT.uasset │ │ ├── Female │ │ ├── Tall │ │ │ └── UnderWeight │ │ │ │ ├── Body │ │ │ │ ├── f_tall_unw_animbp.uasset │ │ │ │ └── f_tal_unw_body_Physics.uasset │ │ │ │ └── Poses │ │ │ │ ├── f_tal_unw_calf_l_anim.uasset │ │ │ │ ├── f_tal_unw_calf_l_pose.uasset │ │ │ │ ├── f_tal_unw_calf_r_anim.uasset │ │ │ │ ├── f_tal_unw_calf_r_pose.uasset │ │ │ │ ├── f_tal_unw_foot_l_anim.uasset │ │ │ │ ├── f_tal_unw_foot_l_pose.uasset │ │ │ │ ├── f_tal_unw_foot_r_anim.uasset │ │ │ │ ├── f_tal_unw_foot_r_pose.uasset │ │ │ │ ├── f_tal_unw_hand_l_anim.uasset │ │ │ │ ├── f_tal_unw_hand_l_pose.uasset │ │ │ │ ├── f_tal_unw_hand_r_anim.uasset │ │ │ │ ├── f_tal_unw_hand_r_pose.uasset │ │ │ │ ├── f_tal_unw_retarget_anim.uasset │ │ │ │ ├── f_tal_unw_retarget_pose.uasset │ │ │ │ ├── f_tal_unw_thigh_l_anim.uasset │ │ │ │ ├── f_tal_unw_thigh_r_anim.uasset │ │ │ │ ├── f_tal_unw_clavicle_l_anim.uasset │ │ │ │ ├── f_tal_unw_clavicle_l_pose.uasset │ │ │ │ ├── f_tal_unw_clavicle_r_anim.uasset │ │ │ │ ├── f_tal_unw_clavicle_r_pose.uasset │ │ │ │ ├── f_tal_unw_index_01_l_anim.uasset │ │ │ │ ├── f_tal_unw_index_01_l_pose.uasset │ │ │ │ ├── f_tal_unw_index_01_r_anim.uasset │ │ │ │ ├── f_tal_unw_index_01_r_pose.uasset │ │ │ │ ├── f_tal_unw_index_02_l_anim.uasset │ │ │ │ ├── f_tal_unw_index_02_l_pose.uasset │ │ │ │ ├── f_tal_unw_index_02_r_anim.uasset │ │ │ │ ├── f_tal_unw_index_02_r_pose.uasset │ │ │ │ ├── f_tal_unw_index_03_l_anim.uasset │ │ │ │ ├── f_tal_unw_index_03_l_pose.uasset │ │ │ │ ├── f_tal_unw_index_03_r_anim.uasset │ │ │ │ ├── f_tal_unw_index_03_r_pose.uasset │ │ │ │ ├── f_tal_unw_lowerarm_l_anim.uasset │ │ │ │ ├── f_tal_unw_lowerarm_l_pose.uasset │ │ │ │ ├── f_tal_unw_lowerarm_r_anim.uasset │ │ │ │ ├── f_tal_unw_lowerarm_r_pose.uasset │ │ │ │ ├── f_tal_unw_middle_01_l_anim.uasset │ │ │ │ ├── f_tal_unw_middle_01_l_pose.uasset │ │ │ │ ├── f_tal_unw_middle_01_r_anim.uasset │ │ │ │ ├── f_tal_unw_middle_01_r_pose.uasset │ │ │ │ ├── f_tal_unw_middle_02_l_anim.uasset │ │ │ │ ├── f_tal_unw_middle_02_l_pose.uasset │ │ │ │ ├── f_tal_unw_middle_02_r_anim.uasset │ │ │ │ ├── f_tal_unw_middle_02_r_pose.uasset │ │ │ │ ├── f_tal_unw_middle_03_l_anim.uasset │ │ │ │ ├── f_tal_unw_middle_03_l_pose.uasset │ │ │ │ ├── f_tal_unw_middle_03_r_anim.uasset │ │ │ │ ├── f_tal_unw_middle_03_r_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_01_l_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_01_l_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_01_r_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_01_r_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_02_l_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_02_l_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_02_r_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_02_r_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_03_l_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_03_l_pose.uasset │ │ │ │ ├── f_tal_unw_pinky_03_r_anim.uasset │ │ │ │ ├── f_tal_unw_pinky_03_r_pose.uasset │ │ │ │ ├── f_tal_unw_ring_01_l_anim.uasset │ │ │ │ ├── f_tal_unw_ring_01_l_pose.uasset │ │ │ │ ├── f_tal_unw_ring_01_r_anim.uasset │ │ │ │ ├── f_tal_unw_ring_01_r_pose.uasset │ │ │ │ ├── f_tal_unw_ring_02_l_anim.uasset │ │ │ │ ├── f_tal_unw_ring_02_l_pose.uasset │ │ │ │ ├── f_tal_unw_ring_02_r_anim.uasset │ │ │ │ ├── f_tal_unw_ring_02_r_pose.uasset │ │ │ │ ├── f_tal_unw_ring_03_l_anim.uasset │ │ │ │ ├── f_tal_unw_ring_03_l_pose.uasset │ │ │ │ ├── f_tal_unw_ring_03_r_anim.uasset │ │ │ │ ├── f_tal_unw_ring_03_r_pose.uasset │ │ │ │ ├── f_tal_unw_thigh_l_pose.uasset │ │ │ │ ├── f_tal_unw_thigh_r_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_01_l_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_01_l_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_01_r_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_01_r_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_02_l_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_02_l_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_02_r_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_02_r_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_03_l_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_03_l_pose.uasset │ │ │ │ ├── f_tal_unw_thumb_03_r_anim.uasset │ │ │ │ ├── f_tal_unw_thumb_03_r_pose.uasset │ │ │ │ ├── f_tal_unw_upperarm_l_anim.uasset │ │ │ │ ├── f_tal_unw_upperarm_l_pose.uasset │ │ │ │ ├── f_tal_unw_upperarm_r_anim.uasset │ │ │ │ └── f_tal_unw_upperarm_r_pose.uasset │ │ ├── Textures │ │ │ ├── Shared │ │ │ │ └── 8K │ │ │ │ │ ├── female_body_mask_map.uasset │ │ │ │ │ └── female_underwear_color_map.uasset │ │ │ └── female_002 │ │ │ │ └── 8K │ │ │ │ ├── female_body_cavity_map.uasset │ │ │ │ ├── female_body_normal_map.uasset │ │ │ │ └── female_body_roughness_map.uasset │ │ └── Medium │ │ │ └── NormalWeight │ │ │ ├── Body │ │ │ ├── MetaHuman_LODSettings.uasset │ │ │ ├── f_med_nrw_animbp.uasset │ │ │ ├── f_med_nrw_body.uasset │ │ │ ├── metahuman_base_skel.uasset │ │ │ └── f_med_nrw_body_Physics.uasset │ │ │ └── Poses │ │ │ ├── f_med_nrw_calf_l_anim.uasset │ │ │ ├── f_med_nrw_calf_l_pose.uasset │ │ │ ├── f_med_nrw_calf_r_anim.uasset │ │ │ ├── f_med_nrw_calf_r_pose.uasset │ │ │ ├── f_med_nrw_foot_l_anim.uasset │ │ │ ├── f_med_nrw_foot_l_pose.uasset │ │ │ ├── f_med_nrw_foot_r_anim.uasset │ │ │ ├── f_med_nrw_foot_r_pose.uasset │ │ │ ├── f_med_nrw_hand_l_anim.uasset │ │ │ ├── f_med_nrw_hand_l_pose.uasset │ │ │ ├── f_med_nrw_hand_r_anim.uasset │ │ │ ├── f_med_nrw_hand_r_pose.uasset │ │ │ ├── f_med_nrw_index_02_l_anim.uasset │ │ │ ├── f_med_nrw_index_02_r_anim.uasset │ │ │ ├── f_med_nrw_index_03_l_anim.uasset │ │ │ ├── f_med_nrw_index_03_r_anim.uasset │ │ │ ├── f_med_nrw_pinky_02_l_anim.uasset │ │ │ ├── f_med_nrw_pinky_02_r_anim.uasset │ │ │ ├── f_med_nrw_pinky_03_l_anim.uasset │ │ │ ├── f_med_nrw_pinky_03_r_anim.uasset │ │ │ ├── f_med_nrw_ring_01_l_anim.uasset │ │ │ ├── f_med_nrw_ring_01_l_pose.uasset │ │ │ ├── f_med_nrw_ring_01_r_anim.uasset │ │ │ ├── f_med_nrw_ring_01_r_pose.uasset │ │ │ ├── f_med_nrw_ring_02_l_anim.uasset │ │ │ ├── f_med_nrw_ring_02_l_pose.uasset │ │ │ ├── f_med_nrw_ring_02_r_anim.uasset │ │ │ ├── f_med_nrw_ring_02_r_pose.uasset │ │ │ ├── f_med_nrw_ring_03_l_anim.uasset │ │ │ ├── f_med_nrw_ring_03_l_pose.uasset │ │ │ ├── f_med_nrw_ring_03_r_anim.uasset │ │ │ ├── f_med_nrw_ring_03_r_pose.uasset │ │ │ ├── f_med_nrw_thigh_l_anim.uasset │ │ │ ├── f_med_nrw_thigh_l_pose.uasset │ │ │ ├── f_med_nrw_thigh_r_anim.uasset │ │ │ ├── f_med_nrw_thigh_r_pose.uasset │ │ │ ├── f_med_nrw_thumb_01_l_anim.uasset │ │ │ ├── f_med_nrw_thumb_01_r_anim.uasset │ │ │ ├── f_med_nrw_thumb_02_l_anim.uasset │ │ │ ├── f_med_nrw_thumb_02_r_anim.uasset │ │ │ ├── f_med_nrw_thumb_03_l_anim.uasset │ │ │ └── f_med_nrw_thumb_03_r_anim.uasset │ │ └── FemaleHair │ │ └── Textures │ │ └── Hair_S_Updo │ │ ├── Hair_S_Updo_Depth.uasset │ │ ├── Hair_S_Updo_Opacity.uasset │ │ ├── Hair_S_Updo_Tangent.uasset │ │ ├── Hair_S_Updo_Attribute.uasset │ │ └── Hair_S_Updo_Material.uasset └── Characters │ └── MannequinsXR │ ├── B_MannequinsXR.uasset │ ├── Materials │ ├── M_Mannequin.uasset │ ├── Functions │ │ ├── CA_Mannequin.uasset │ │ ├── ChromaticCurve.uasset │ │ ├── MF_Diffraction.uasset │ │ ├── MF_logo3layers.uasset │ │ └── ML_BaseColorFallOff.uasset │ └── Instances │ │ ├── Manny │ │ ├── MI_Manny_01.uasset │ │ └── MI_Manny_02.uasset │ │ └── Quinn │ │ ├── MI_Quinn_01.uasset │ │ └── MI_Quinn_02.uasset │ ├── Meshes │ ├── SK_MannequinsXR.uasset │ ├── ABP_MannequinsXR.uasset │ ├── SKM_MannyXR_left.uasset │ ├── SKM_MannyXR_right.uasset │ ├── SKM_QuinnXR_left.uasset │ └── SKM_QuinnXR_right.uasset │ ├── Animations │ ├── MDT_MannequinsXR.uasset │ ├── A_MannequinsXR_Grasp_Right.uasset │ ├── A_MannequinsXR_Idle_Right.uasset │ ├── A_MannequinsXR_Point_Right.uasset │ ├── A_MannequinsXR_IndexCurl_Right.uasset │ └── A_MannequinsXR_ThumbUp_Right.uasset │ └── Textures │ ├── Shared │ └── T_UE_Logo_M.uasset │ ├── Manny │ ├── T_Manny_01_BN.uasset │ ├── T_Manny_01_D.uasset │ ├── T_Manny_01_N.uasset │ ├── T_Manny_01_Tan.uasset │ ├── T_Manny_02_BN.uasset │ ├── T_Manny_02_D.uasset │ ├── T_Manny_02_N.uasset │ ├── T_Manny_02_Tan.uasset │ ├── T_Manny_01_MSR_MSK.uasset │ ├── T_Manny_02_MSR_MSK.uasset │ ├── T_Manny_01_ASAOPMASK_MSK.uasset │ ├── T_Manny_02_ASAOPMASK_MSK.uasset │ ├── T_Manny_01_CCRCCPlastic_MSK.uasset │ └── T_Manny_02_CCRCCPlastic_MSK.uasset │ └── Quinn │ ├── T_Quinn_01ID_D.uasset │ ├── T_Quinn_01ID_N.uasset │ ├── T_Quinn_02ID_D.uasset │ ├── T_Quinn_02ID_N.uasset │ ├── T_Quinn_01ID_BN.uasset │ ├── T_Quinn_01ID_Tan.uasset │ ├── T_Quinn_02ID_BN.uasset │ ├── T_Quinn_02ID_Tan.uasset │ ├── T_Quinn_01ID_MSR_MSK.uasset │ ├── T_Quinn_01_ASAOMASK_MSK.uasset │ ├── T_Quinn_02ID_MSR_MSK.uasset │ ├── T_Quinn_02_ASAOMASK_MSK.uasset │ ├── T_Quinn_01_CCRCCPlastic_MSK.uasset │ └── T_Quinn_02_CCRCCPlastic_MSK.uasset ├── Config └── DefaultEditor.ini └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | *.uasset filter=lfs diff=lfs merge=lfs -text 4 | -------------------------------------------------------------------------------- /Source/Holographic_AI_Core/Private/HAIC_Emotions.cpp: -------------------------------------------------------------------------------- 1 | // Copyright 2023 Bifrost Inc Logo 2 | 3 | 4 | #include "HAIC_Emotions.h" 5 | 6 | -------------------------------------------------------------------------------- /Source/Holographic_AI_Core/Private/NN_Memory.cpp: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | 4 | #include "NN_Memory.h" 5 | 6 | -------------------------------------------------------------------------------- /Content/VRTemplate/Audio/Fire01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56f7fad9a42134e55582a52dd0729a30f34025743c04a33cc09bb0857a6a0913 3 | size 553050 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Audio/Fire_Cue.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6abde9559c8ce054df125be430c89811cfbd7305b69a3817f839af3a06fc08f9 3 | size 4815 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Hands.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e7e9015c1284dcd9bf8810096b6d1897f3a66907d57824e58a1ca3abcd2149a 3 | size 27297 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Menu.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76be30ce517f65313ea9165ac2b29c20f76d884c062338548e78696203ec3406 3 | size 12488 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Weapon.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba3fcd4b15d22fa48cd71bee28f612a13b9e694d28a7528fc08e37b684da45a1 3 | size 1473 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Textures/T_Grid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d80c7226c108aa3f9b37b56e422dcb679523527c616cf0f29ed44b5c0301000 3 | size 24466 4 | -------------------------------------------------------------------------------- /Source/Holographic_AI_Core/Private/Neural_Network.cpp: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | 4 | #include "Neural_Network.h" 5 | 6 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Meshes/SM_Cube.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79cf9bb71346c1f0386362238aef3e01400be06211e6813dc1ce9bbae969fb07 3 | size 17034 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Meshes/SM_Ramp.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81a46d90c20408e4246e37c4c00bf764b5a05d3752eadd1c3b10e8946a79ffbe 3 | size 17169 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/GrabType.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07187d8d9b9eb78dc7f2f0ff7b9a53884535113cd45a8a8c8bd2dc053f33fe56 3 | size 2826 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/Menu.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcb50307f023bad1d31054917053339bfd8dcc9abb5a30079c30ac1cd82b8005 3 | size 517366 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/Pistol.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e3b5cdb1d26ac9639354d0c7ec468f3e0fee41fa3d08c9b032b471b149c591f 3 | size 131943 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/VRPawn.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd269666dac27607de420247f400145f9290cb18b6d4e86c6b8571d2fe3b5fb9 3 | size 881933 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Move.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55bc0bbff0319dc9efbcadbe11fdacbc464f8e4d3c370e0efe8b8ea475c41b23 3 | size 2534 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Turn.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9804de4a630d81ed6cb9fc44d530c4d57f4c306435e04147794cf4ca6d4a659d 3 | size 2098 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Default.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:219a66ea6054c6ba7dafbc9e1544062460b2973d7c7e056a649339967cc7efdd 3 | size 19644 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Weapon_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b48ecfb984e0a1d564f3d3255c10c673933be0405fc3f6682084a9c4cb891588 3 | size 4509 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/PMI_VRTemplate.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcc7bfeeb4e150e138d0a74aadd898efe271646be99d09305c651a8a2e39b425 3 | size 2827 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/M_VRCursor.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb382e33a72c7d3383174940cd30444abb1b3e3cf0fdd48def2b1da520add8a2 3 | size 54066 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/VFX/NPC_VRTemplate.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4deaafdde47a9c9f763e3ff2fe18e6dbd28c8ea30572b7fc03a763ba67b25c0 3 | size 2918 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/VFX/NS_MenuLaser.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd0bf0a40f6a12752adcaed33f8c06e9966166fc560e1cb52c9569f3f0df75a6 3 | size 554155 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/VFX/NS_TeleportRing.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c55f173631ba21b4bf6e8af38dd85a9f2d4a93b0d08288459a3ec9e868fbe3c 3 | size 765398 4 | -------------------------------------------------------------------------------- /Source/Holographic_AI_Core/Private/HAIC_Controller.cpp: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | 4 | #include "HAIC_Controller.h" 5 | 6 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/AI/HAIC_EQS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04277499434578b9dd447c9c648c214b66154cb4557e623c9a352306ae68c831 3 | size 2912 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/AI/NN_Memory.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c7229fa3911492a4178df5fd8b34b487cb3807438b1ff24dc0e07c7675f6521 3 | size 2222 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/M_Solid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d754d45a7f34228c043d5389af994f3f6c9d6e4bd579bba6c65f11813db11662 3 | size 9609 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Meshes/SM_Cylinder.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a59270c4e29b708c93c0872970bd7f8cc2a9db0e898ba6792605364b25fee585 3 | size 20348 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/GrabComponent.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34d89a05901cd7eebc21c74bd673f3313c75d11aa119287eb752bbad660e4f2a 3 | size 251609 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/Projectile.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb71f68781f0d5dc8b52e9ef163a521a8eed163018291ac6cecdcbc55d91c916 3 | size 137032 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/VRGameMode.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:510f813c18a4f607d3ab01e442b1adbdd4bb5a27ee74a012a15bbb241ea93521 3 | size 19581 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/WidgetMenu.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef2354f5aa9a4fd090397feacac50b0ef07da97376f23fafc6c51a8c8cb00314 3 | size 66156 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Haptics/GrabHapticEffect.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c08c1c97ee5c7927e82eba08df4cf3610d542378456d15b61466f0ee62dbbe0 3 | size 1973 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Grab_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebe280d957c632da9a7cbe04f7a6b1bd802aeb223ff1e538170c7cadb169c733 3 | size 2089 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/IMC_Weapon_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5451460450eae13e12df4a8d1828bd5995ef17d2d3e80107085d970b720c94f6 3 | size 4529 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/MI_Grid_Accent.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e0f8fc3cf19b881828e2c18e9af6180c0166c380d1c9c4934b0e86c0531af8f 3 | size 114169 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/MI_Projectile.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87928ba72769868101224d007158e79c110aa79f786ebd451dce0094a861a88e 3 | size 101088 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/M_GridRotation.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d527ed83b769c8ce30bac9fdb6ba9cf9f793d08d8c2085f3a53ef15b21e96371 3 | size 131767 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/M_Projectile.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eeda3504fcf8796fc2d1022078ae4d6b4d98f3d00585ad8940c247bb55d0b3cf 3 | size 106703 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/M_TeleportNoise.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:951c5abf87d9f43b414db33fdbbd5866bd7a0a8b883b8c70eabe26bb4d3c4653 3 | size 71650 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/VFX/NS_PlayAreaBounds.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13c0bed079f7aef9f0e458246311b95168b22649ca5495a4c51155bb7691fe89 3 | size 538530 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/VFX/NS_TeleportTrace.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:936f859d9eff23692e3ca31af07698fbc7c61c1e5b6f54ad5f8bae812a1e067b 3 | size 720370 4 | -------------------------------------------------------------------------------- /Source/Holographic_AI_Core/Holographic_AI_Core.h: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | 7 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/B_MannequinsXR.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50ffb63992cf77a0f0a9e50cd7dcc74cc8d3225d76da5515009a071002f7aef0 3 | size 14168 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/AI/HolographicAI.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a597b26a15c31fbcd3e06cb12e776dc790543d2251493d6490eea241474535f0 3 | size 56701 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/AI/Neural_Network.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c900fde0f567b94946c88b0cc4ea77639876354b539d91e45b244d958c26ce 3 | size 3364 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/MF_ProcGrid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa5d22837af536b9690ed2f790e288a59ca659c63e669fca99685afc2364ce82 3 | size 48741 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:417952e4c6986a99f1bc3fb25ebceb1308806028bd2b602501b66b874aa87cc6 3 | size 8669 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6301fc4690ae3dbdc0b77203c6e5f662561351252c7df36c334fb72f6ffe2205 3 | size 22332 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Textures/T_GridChecker_A.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb8334767064b107ec4f4407ef1365e8b9e2dfeff5984e66d4a6232254ddd02a 3 | size 9600 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Haptics/PistolFireHapticEffect.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ea69f8ca0380e2a42784da2bc4ac2c3951866dcd86cbd663578f8d731980050 3 | size 1997 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Grab_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38e172cd55ddc177025c148fca85ca75a5d6fd370c078b3ad79e58433a9276b9 3 | size 2097 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Shoot_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2a0a80f061e3a8be988e7c06c753fd81788b09a26732ba49ea51d44a5645aa4 3 | size 1290 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Shoot_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56bfbfa835e1d0e05ea319ee0bf88f4808c14d1662d14715893912da755b78f9 3 | size 1294 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/MI_Grid_Default.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9400be9c902dd0d7ddc0a879c1ecc7ba22beec1168a5c7b355d949692b9ad321 3 | size 118969 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/M_TeleportCylinder.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46a5c21d0b684a529667fe15fd46da3e0fe83abe70b8b03e340cb84160933cce 3 | size 83553 4 | -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | [/Script/UnrealEd.EditorPerformanceProjectSettings] 4 | RealtimeScreenPercentageMode=BasedOnDPIScale 5 | 6 | [/Script/AdvancedPreviewScene.SharedProfiles] 7 | 8 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/M_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5ea1f9045d0215ef97a1343fbdb685a9c42a90a7da97bc9eedeed0f83ae1c04 3 | size 78969 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/SK_MannequinsXR.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79644b2acaa4047e0c879ec304f1ee51daba187214a6e73ebd720d04340dda56 3 | size 53444 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/AI/HAIC_Controller.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fafbaa67cb92d320bad4c2838d645337dcdd8d935ddcd6ffb3683225a338333b 3 | size 25898 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1a5b000cfbe3030ff6f0bb67a2e4cc4bb803769d74ebd88d54f98918616d2d1 3 | size 40328 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8da43997ae75f32c7fba7047ca3f34ca88d68613845d556072b74c93de74e6a5 3 | size 17827 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/Grabbable_SmallCube.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac174149b302c10d162c92e2a4422052f4f265f98ac92bbd5dd44cdd7c4c4a68 3 | size 113845 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/VRTeleportVisualizer.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:911c6c1f10674d05a1c1232378be5908a87830f8ceb2256717504d62bb4e78b0 3 | size 78009 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c30a0531059e547527bb963ce1f34febd9921cd14b86d08dfebb80d2f044c376 3 | size 1845 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ad808a83e247d0007f7f16d46387ad3afaa144172dae10e9c7d46b8e32cea98 3 | size 1850 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Interact_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcbaa513f5531c0f0ea8780ce5dd7a05dfbe022b93e5b0c7a794e5d04e5b0141 3 | size 1322 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Interact_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a14cda122e606f05fc09895c38b176b345b43c41e85e0b9affb04e06a8990307 3 | size 1326 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6da639c5cdb17a82f20b27b909e953876688da9340c558e96e7c0b1bf0303d5f 3 | size 1654 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b137fb7f797ed7e73b0ec86caacc2a0bb2dfcf24254bdd76ab79d3876933751 3 | size 1662 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/MDT_MannequinsXR.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1597c80e854c8dfc0350ccb56dfb4c106fdc76a4d1150158acd1a389387acfe8 3 | size 12589 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/ABP_MannequinsXR.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad0f28f27aeb894657cbbd6e9332efebd8b162cceb1511b0eac3dc22a6662275 3 | size 226784 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b28cc2a6c095077236aceb22a394112503012e9e42e43ab285266cf73538dd17 3 | size 2341961 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61b47127b906d3a4f85f50bb82c9e88176050d7e06611c041bf9d1626c0f6525 3 | size 2340949 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44b918b3846be21eedcd6a6497825c8e815d15f73e9a621c59592f7041768514 3 | size 2357852 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ca639ea9c47188c946e9ab49610bbf9b218e244988aaa2a9769d283c8032fa8 3 | size 2358875 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Shared/T_UE_Logo_M.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f8ea0777df9d18e35e8940fe02012ddb9050837e64cf71cb2edcb0582c38ed6 3 | size 69981 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/Levels/HolographicLevelBase.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Holographic-AI-Core/HEAD/Content/Holographic_AI_Framework/Levels/HolographicLevelBase.umap -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/BP_Eva.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:534655356d7922d5365fd0f6eabaa7927a647feae88de8629c3693ab4c00e01d 3 | size 351484 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65022a590b73953153898dfd370aa8c2609a84670cdb06dd205d813712d1c1a4 3 | size 12785 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa0f2a06a7d937127d7d737c13bacb3f8fe88c8e0479f5e6b7cda81fd225d077 3 | size 11922 4 | -------------------------------------------------------------------------------- /Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:838034e5afc7ab3a70bfff6de2e1237aa02337fb423e95c1b536b3e30c61c982 3 | size 11957 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Blueprints/B_AssetGuideline_VRTemplate.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f5f243436ac4b9d10c6e4d85e1f68bb3c8e960d6244b35140c774183ccc15af 3 | size 11036 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:760dc527bc67f5e34005762d5ad2bcda8b417e4070e100a4466b78b0a5fed3c3 3 | size 1572 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b94a20d52449a984fd515f0620b863257e95a42d92c9bec0c00472f0e53d530 3 | size 1576 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:944e621c5e132608192b83012a5672bf4e2d22755461017b15cced0ab2f3dd82 3 | size 1572 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdd008c9ea7aaebd3790087b60e761005c73dac7a2e4922c35c551cf30eb0c4a 3 | size 1636 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18b5818a2e7b26dbb53e05ac0a03235839c4a2791144d6e8dfd176ffa79dba89 3 | size 1580 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f065eca2fc273b0889e419bc81bb4ba9a6214f889f4fb42b8c0ca58324581da 3 | size 1584 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/B_InputModifier_XAxisPositiveOnly.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9887f4637771c2763ddd6d27d507f8a97d92cd4bf837d7906556105c773db71 3 | size 40449 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/Functions/MF_OccludedPixels.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34e64f3c0f9851e9c7ab30677f9a9364fa93e4dd79be5a91f90fb488dae9a980 3 | size 115522 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Functions/CA_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58c3d46510c2df1bd1774f561fc6145d5a642e7f5a6882e973528faa88dff3b9 3 | size 4884 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a18f0ff4a283dc1668f46278ab4d33dcb60548b06e9b6be48d65cbd5d022412c 3 | size 18514189 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:306a6c65ada3d6478b8029c577b7754b55564bcd0ec6dcf6ff290d3f59dc7daa 3 | size 5740376 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c0c055794202551113d6ea7a5228c785f91390e2e902d0089668765ae3c6ec9 3 | size 7198272 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32a0b6af96c3804bd9389bd8c1718e9298695bb1f31a651e4ec8b8adb509688f 3 | size 1357791 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1a38d944b6fbc5439a19454b11233750b60e639b1c4cd8fc6e059d8218447a4 3 | size 21135759 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2f4db65d0b4464e3f9f11efcdfa718cb2815911a3f01c7790a040d2d92806d4 3 | size 9028708 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86b51839df071d93e66c7012710ba63e090fbb2a58563fe8224b145792eab865 3 | size 7269358 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1360815a471eb4a1f382090747d3c3db1a78ee3dd1901f992e8acad067277c00 3 | size 2151498 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4478792fe2edac7f6b7abd730b24471be5d28457703be1c4ae41c4ca5de5dd39 3 | size 4711219 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bf28b28485da301272c2d81264ebd855abf0cbc1b3e210fb11fa7717b32b629 3 | size 5217760 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d1151eec53332b24f3974cdf764a6f74a78045eab938dba4efdf0dd8ae8e272 3 | size 6732587 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75e79d7f2275242ebb7d25b7aa44cbaf43b63dc30109f4625bcfd2b94622234a 3 | size 5217760 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Left.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54267e3428b7e5561286b572dda2a701e456d6bc4bed4bf7a787824fcbf3739a 3 | size 1588 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97992799e0a23d2c23a431839afc73c5b9ba42f07b1ca3088b690540c32897c8 3 | size 1592 4 | -------------------------------------------------------------------------------- /Content/VRTemplate/Materials/DefaultRibbonMaterial_NoGradient.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7e60a45f18d9bbe8ac86f1be038d6d656b10b6ac7a9bf741774f121f3c1eb2a 3 | size 65243 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Grasp_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:871ceac0bab626c668c4c5af26212bc9335fe2b3412c5d8e2aa865e4df03d0e6 3 | size 29772 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Idle_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a06f31e4906fcd5d30181eb2b48599e3e362e295f758e0c1e2587e0ab1be5e2 3 | size 46981 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Point_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0de293ed0022607207e512a86e473df797aeb52db887653b06bfc7311a7a4cd6 3 | size 30003 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Functions/ChromaticCurve.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3040c08d86403cff387f7a6b383eebde53ee8854ce5646113d5a5fa3f43ed31 3 | size 6355 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Functions/MF_Diffraction.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feaa29c1dd7a9ac3a7373eb8e49980839456eb5e6b1563e47f29ff9e46bafb57 3 | size 31967 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Functions/MF_logo3layers.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d2f48a047163533e4c3f280c00eb475ca8d3f7d834d9fc563581df856099a39 3 | size 54752 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cd8de9806de029cdf4237f9b816cc7e675e72a20d978a760ea75d0383cfb74c 3 | size 15394 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c63305c3c758acb57ddef56fe20ef8aff1254e1dcd3c61eee7b2d50fbceb99ae 3 | size 20307 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8a3ba2ce22d06ab3141dc87c46087773b55cb999b95abeadc96108a059a0101 3 | size 17775 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6906d7f77e1e59363aada29a7056986e2ae3fb09964bebe5b1b2edf23e6a2fc5 3 | size 19962 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:975d13a4187ac210f27163111814b18288610ff41fb8357b1a56e69aeb417bc4 3 | size 11038205 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fb958a48a1d45c98fb14b664a93ebf129ff95857e7d6ad0bc3fcf87762b2f3a 3 | size 13673322 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:130beec1f234c4751f103d905196928c81d34602b2a57efeee0e816792ec3f5a 3 | size 16108684 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d67cc3c3377a6728964f0ab100882c7b0c107ff881ce1265abdf808541793e4 3 | size 1104713 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cad9f2e00881286f6599c1863622e1b1a2b6fdcff0d82a6153f754afc98ac9f 3 | size 19706968 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41895407e99a7e7527584c550f3cfc4aab0196d0e4d8da7a87e3dac03ec8a98d 3 | size 1758580 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_AnimBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e80d811420f190374295feaa274b5fe8f020d87105fc60bbb1a64845ba0363fc 3 | size 345635 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MI_Hair.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c94bedfc0b4d5d9cab40b36d1289fd534e47dd6ad9ca24699ae0e2d0f2cb1d1 3 | size 15418 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_Teeth.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:245ddce7ae87b54a95afa45077a8d9ab922a6daf95db54cb11a816042983ac97 3 | size 58054 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Body/BodyBaseColor.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db263314df68e617a283403b1196f3ffb056dfcd890f392694afb173335c3b2a 3 | size 16394150 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Eva_FaceMesh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0eea50cf07c67b072424e7d8e66bbc31149d8c13a9f1ad0dc00b2f09ff9f04f 3 | size 145679298 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceColor_CM1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e22300cf564cb633670f1aff144d386880d45ce5306a401495efdd013725f4e 3 | size 3731474 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceColor_CM2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5623d2ff47552caed84c1be745528ac44e583d6f7542c2ccfbdf3ce2607b783e 3 | size 3708074 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceColor_CM3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1caf598e0154480116b02aa510073380fb5c2b473cccf9eeddefdf8ab7a9cf 3 | size 3716542 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceColor_MAIN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2cf08a04212d8869ec426e967ba6b331caf8fdc566a9396416f65e9bfb73f4e7 3 | size 3731067 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Hair.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c151e97645f1552d5f02821c88950084467ba8037ae1d67e49a5baeb08749d8 3 | size 23797 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Hair1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3f30ed94a5d448596087dedb38b18c96cecf812cbf6e63d2459dedf1e71733a 3 | size 23581 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Hair2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feeef790203d2151b3cd94f03f3f66bafdb8ccfa4d498f9291b8280ed9304e70 3 | size 23581 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Holographic AI Core 2 | Holographic AI framework for the Microsoft HoloLens2 using Unreal Engine 5, Metahumans, Azure cognitive services & more 3 | 4 | 5 | Currently in development! Come back soon 6 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/A_MannequinsXR_IndexCurl_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:145ea8aca0e7050e9e32b608315cdcc0b99517ab47813ec3ef8d11a998a72b11 3 | size 30012 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Animations/A_MannequinsXR_ThumbUp_Right.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6021f3b314c2e1324573c02895cc0c183bd573b6085470a44405257747e7b339 3 | size 30064 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Materials/Functions/ML_BaseColorFallOff.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46cd387bb01f73688460e3239f47e71bb46713876ab51c067b2ff531ac848648 3 | size 13654 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09b015d8dfdec58c621b7232e422c95ce43b200ee7b2db8079cda6b1fe019731 3 | size 3612626 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3539678288a44329455d6f585283e7cddda59802a395ea90dd2149bf3bfed0ab 3 | size 8336154 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:deb7fe0d401707b3d4e50059c2cea5c8d70a3700459f090a5ab0e3767a61b9da 3 | size 11656231 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed5edd53bb18f70ddda644ee81f66345730a46fa21614bb44733685102afffac 3 | size 5834927 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05ae4fe768211c6d76ff9a32adeb228de21ab084b4ff00e85fa47f663f3fca39 3 | size 13169861 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd38c0c245bd4f363272d4d6726bcf09d56e8e297ff8391c9c39caff3d971de2 3 | size 6902066 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/IK_metahuman.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f3de1debf740168ac52e8c2dd0d861471c2b179d1548d7b7e5554e8e056a525 3 | size 275271 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/RTG_metahuman.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49af7113d0feae9544863cb8a2784ac8b38d5aacd5e3019654e28696086d8cc1 3 | size 12769 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Controls/MHGizmoLibrary.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3489bdfae6a776cd58088cab36cf33834eeb9770aae1207483465d9e806da19b 3 | size 4725 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Controls/faceboard_2x.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:957e84c6d92912282181eba97c7dadd26698289c38e2b7412c1cc2576293addc 3 | size 449130 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_Archetype.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b216a90486d1763e7a8cd683472230a772dd9f2a06d5ff686d864a7b1d728d63 3 | size 145677687 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Neck_CtrlRig.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f418dc3c988edf02bf21081d4531f4888250088610b0a61f4a18e1d114267a7 3 | size 1472031 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_Eye_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cb31d01ad2ba912b288575d210ee1edc285ee80674ed14cc7e32b4bb7417094 3 | size 261268 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae2e966618be7b7ce6257ce11b379a72ddb7072f4614efbd3e322623810ba15d 3 | size 24498 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Hair_Color.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6cf4a163bcfb2ee94a848f29e57bdebaa4b8f2ce7226e9a3ee2486608112f0e 3 | size 19532 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Variation.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20abdb9edfbf9f27869c39afc589cb319b201ec8e2304d349ee172741f17dac0 3 | size 14231 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MI_Hair_Cards.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4a748fa63a42601eb4322e1aa222dccd9fc667e5010b9a8137ff92ecd11e2f6 3 | size 12183 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MI_PeachFuzz.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a8e08046694e311a13b2097d007cdb34eea2db7ff27be47549e079bcc8468ea 3 | size 10561 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MPC_HairColor.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95f8c055829e674480a8d288ec32b73597c785d07386d26ff46edfec12bf31ec 3 | size 2874 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_BodySkin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80c3ad8afb8ecff15a13e1d0250e4236299fa0d39a36151b286ff080eb9e508b 3 | size 74297 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_Facial_Hair.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d454648df90ab8579407c75b3c9da2e8ad9ccd8ee3a3b9aabc1ecce31d49fcbb 3 | size 84285 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_hair_v4.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:580ece284d64dd497e54e9fb6ff660e031d92464a21e403385fb37708f790b63 3 | size 107980 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/T_Black_Linear.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dc6db7de5ec12dea9f7a0d2c4119c92b8bb3e9de4f492130ce9771ade600b79 3 | size 4239 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Textures/T_Black_Linear.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4549df6014de18e8bb2d063a99d705d4e3d8f4a5c7d55dfd537e22ed65e7e90c 3 | size 4237 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Textures/T_BodyHideMask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57d95e685dbce6169bf8fc5cf03e37cc93451f5dd4f7b16f829cfcc15b182cfb 3 | size 51468 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Textures/T_FlatNormal.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d6cb7c2dd4303306172de3cf429b041215be0053ae5464c830cee7fa6148561 3 | size 5583 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceCavity_MAIN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3358dba4da2e00ab95e2af5137a72a7b1bf581057de0ffe27053a3e7f752c6a0 3 | size 38813695 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceColor_MAIN_LOD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:153acc1d29e2d0edb3bad4b8b26cf5ea44cc31c4bb29a6853f7ed3ea7b9e0a79 3 | size 3231971 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceEyeLipstickMask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61dc8ff403a5b45f0eb22af05c8cdf5126378adfb7fdc32acee213be126f66e6 3 | size 729212 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceNormal_MAIN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f316a01bff147fa0d65216ec1c0e0ce0c377c02405dc57d2267132f88e1bc137 3 | size 49538138 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceNormal_WM1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49d06040a86f3065965cfe96d0baea446f78cd0e1b24d6176a25902293e3d02a 3 | size 55431666 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceNormal_WM2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9db8ec9f3e765cca5c5cd4f37d3b030712cef639adb9221788c36e3111454e3f 3 | size 56824975 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceNormal_WM3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f06788e4cf065af4b40ccd92085ea8f9e2a22bd996b118e97ddddb06ed110175 3 | size 55492789 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceRoughness_MAIN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:682c9017677ea5c19ede936f534bff22acf215411677ae12e5529dde6c009c8f 3 | size 2442191 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/T_BakedNormal_LOD3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b1ddd419fbb41b710e48669ac6d6849b1a6b91eee5d69aac7bc024a17173e07 3 | size 132333 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/T_BakedNormal_LOD4.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9d7f45d3215e2d22f9fec51ee4cfc23b3e8550dd038c42dcc118786bc56c6ed 3 | size 136956 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/T_BakedNormal_LOD5.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08cb1217bd3790f65dab12aec5ef73424c78c633a0f1a62051663a8abf807350 3 | size 144092 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Facial_Hair.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d32077bdf61f31ddebd45882027b37378dd430a2e68d9d46a3ee76c210a73073 3 | size 21446 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Hair_Cards.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4de91800237f6cc1e2b170aafc5633023984529c93a2cd791e7981c839b9fd20 3 | size 25975 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_Hair_Helmet.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ceca8279dd17f904641586897046846d362b8658db1415a5336b4cee4ebba236 3 | size 23860 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/MI_PeachFuzz.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:756e34096071c40ad86c3d30926eecb287291ef8027411026c082a060a41515e 3 | size 10585 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a146719a9d03e72c4e96fdfd71ec2b70bf7c28b23f97b6651b299336977ca95 3 | size 10271993 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c064c8613f9041e202b3d230cdef31a51b71a7e29c500fe6da311db59ede39be 3 | size 13137448 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1159f04651f5d65830ee3a68216828f219fd486e0587f19095765509b2fb1686 3 | size 12400023 4 | -------------------------------------------------------------------------------- /Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:928b1bf9b5c3f2d877291599bc6aa64eacc7e2c323a7cfbe7d69d3ca160a1af0 3 | size 13427955 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/f_med_nrw_preview.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:409ab0c8948ef3b9cbec60f04c30f61cab8b7737af24d320cd15f2a8b935fd88 3 | size 13736642 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Controls/convergence_3l.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc00ea66a103e203be7aff2e4e23a6bbe71703c0f3f2a50da971cac834e8438a 3 | size 194878 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Controls/faceboard_followGrp.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dc4e8c344dc246c3664d4ae5eb4ddb29a390fe3da919f6e8a344f1be6dc62a6 3 | size 72881 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_Archetype_Physics.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48803ecaf27318550732b2df268624fd62c056737542be7085ef8ad3b632c414 3 | size 16514 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_PostProcess_AnimBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dbf9f630b016f4ad1d9c5db76780ccdcfc692d19e1fb0dd059149deeff81f98e 3 | size 57533 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/M_Cartilage.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09b09513ab495bf709b51eb3a37b7498a7c0afc2200db9f9ad108481c352f6c5 3 | size 6962 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_Sclera_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aadfb890b282a69a811a3b9808151769356950fd861002d3627f0a5056ea1084 3 | size 3895586 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_Sclera_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1bbed605b8a91e3b42b52f65416d39fe438c92906773c935c3464a17f7d6028 3 | size 1641357 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_Veins_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b5d2f62e0a8706d3601e0ea30b553c7b55704c1a73a0ae5c039c1925e2c7053 3 | size 5975987 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_lacrimal_h.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cc737af061af3330b615012c4f7be9922848c57256dfc1066bb0b2b875cb22e 3 | size 608862 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_lacrimal_n.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de5559e19a2febbcce62a3980dc06674cd90971320a544f02deeaa99ab711464 3 | size 1637242 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/simple_face_CtrlRig.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c6fe81b30baf3dbb4dba4d4a5cab6ae629c874ae0fa2fca2c72afdadf84cb8d 3 | size 17165232 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed-Bold.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0afff27a366fbe2ef402640e18bb60cb2ae37c542d14d1262c5150ebf46f5638 3 | size 171057 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed-Light.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed5227a6158a1dd912ba75b6e79db64ce70e94ff9a40b29c0f53b7ec4bd00640 3 | size 169280 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_HairAnisotropic.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4103f30a405ae502cdac6affe4a7cc1e13158223ee6203dcc087dfda5e7b436f 3 | size 64097 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Passthrough.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:594477fb9936a9419640fbdc6fde2e3569f3874b4a95138466e706b48dff9cfa 3 | size 11935 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_RedHairBoost.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b279b393b93de21db563336bb393528b6622197af4c3c134403f272ff812f513 3 | size 14142 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MI_Facial_Hair.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3efae0bcc55c303abfc60c67d49b555263b2af8129397694c2c822e93794f7e 3 | size 12102 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MI_Hair_Helmet.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:380ebe6f00a9573aec8bf4d95a6ecb6d6c15ab035bfed027828100be18875274 3 | size 11962 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_BodySynthesized.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8f7e43200f428b50aaf8ad2b70d1020a4bb4956eeab2ff71f31c4c58f365c62 3 | size 15883 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_Eyelashes_Cards.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0273cf89559861ffb0b2453d9fe5f23e3366ec2863fe93ffd4c7fa0e126a27e4 3 | size 23424 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_PeachFuzzMaster.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a60b00e311a9dbd94b910896645671962a5b87e683150c381e8a23cabae5dbda 3 | size 51044 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_fabric_simpler.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f6c7241b95200265359e0df748eeb4dbbccbb3ec5c1caeffb330c8d3a4d7cd8 3 | size 234752 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/skin_n.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06e81e6cabc7523b011800388d6d70924f7079e258a936aad2cfec234871eeba 3 | size 1644142 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Textures/DefaultTexture_VT.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3867cdb65be798f33bfa763d92430a24f9919603abe2b0130d1f50ec9b76cbd8 3 | size 33931 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceBakedGroomAttributeMap.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c302c07b9deabde756048238742ba14cb3a785a9b37e7c57477c2fcfa306dbb 3 | size 53178 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceNormal_MAIN_LOD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c98cbc4049f90c1401fea2f0ee0eef3a94f07127129ed9dade0ee094e6c17fe 3 | size 68078393 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceRoughness_MAIN_LOD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed7f48582eeff555e1b856f0f02a04d32ab4635b2fd2b7e1b8407530d5acc8ce 3 | size 2442774 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ff8a8e7637412e06bc07b63db29166a2d9e79f239603a2c878ac7acfc95ac34 3 | size 22704252 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/M_BodySynthesized.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11b43667b90a402f5b84b9509d94ef41f84974da48a96926448cd912a58c22ce 3 | size 18860 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/Sweater/M_top_sweater.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b68237ffdfc7a035aed6f70ce9891039df70ab4913c512f4679351e67c806072 3 | size 36459 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/MetaHuman_ControlRig.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b036da18488d688ccfd82637aaeddbf537bde3324f84110969ee69fc28784cc1 3 | size 12785370 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/MH_CR_Picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c14d33e6d96a1be121456377d1e98a9414394d68b4e7e8d021fdde31e7f96f11 3 | size 2691070 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/f_tal_unw_body_preview.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ca73dc0f500e9238bdb7b02542372fd29485f130a755ad37366166c60e3de69 3 | size 9714872 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Controls/M_RigControlActor_Black.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f44132d35f4e520ca4e408943784947d98115d36d7b3811d0aaff2bcaa49849 3 | size 7016 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_Archetype_LODSettings.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd93f937b349043c2f15766401f782f0393fc1c85734dca49b83cbb4f9f7fd1d 3 | size 148814 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_Archetype_Skeleton.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb1f82e15d15a5d94305373c474a679b255489a00c2af35557fe7d26264d05ec 3 | size 276075 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Face_ControlBoard_CtrlRig.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1976930683141237550843450595d0ac3db5340cf1b1d0da15b32e84122f2845 3 | size 10323461 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/M_EyeOcclusion.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de329e9e2303a7c13fa6c69c4b061e68fa07b1f8aacb764e7d51b7a54cad976b 3 | size 97397 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/M_EyeRefractive.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cdc546eaf27d7c7f7d0ebda6613a6dedac9fedbc5d3a92e52b913fcaa86b95c 3 | size 114122 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/M_lacrimal_fluid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c08e1f6620c2fb377bd7cb2b96da599593b3cde6217b1d835919197d71ef185 3 | size 33108 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/SubsurfaceProfiles/SSP_Head.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d748faf8d6035392e7b84246014413904e81859d289fa875d5f87b883a384c9d 3 | size 3599 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Default_SecColors.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edbbc6f42e08432c98f3f1513d1ce07dfd824cca309285a0d297fc4da331a351 3 | size 3517 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_MH_BentNormal_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be08631900de4b396661baf6e03d478c422c5010f1739ba0c42b5a240ba8baba 3 | size 815850 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_TilingNoise_001.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4810a9a5cda12492054f0b41b0cea2631ada905554a77628b7e671d65de243af 3 | size 122125 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed-BoldItalic.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:232942790e8d4ac8e32d453b5086c39bc99badbf2662a6e64777f6114453fe56 3 | size 177167 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed-Regular.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1392af2a681a1df73bbe4271c3bc3dfb8ebe714bf72754e122d7c599fab08620 3 | size 171574 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Hair_ColorBlending.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61823c05879299215848e6b52ae88df74312e754e5075f8fd0f0f2eccd2ebbde 3 | size 36329 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Hair_SaltAndPeper.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52a680bbdbadc5beef50384a7d3acacc70cb74a04d0c23ec32ef46b9b0c0fb59 3 | size 21969 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/MF_Hair_SecondaryColors.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bb740ee806dc7b3549d56cbf0304aaf74db4e76f7ad41091fe27aa2e7bf992a 3 | size 60099 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_EyelashLowerLODs_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af546262d52ef14a39b77c9f46355a3e604d9305b547ce2edc5af3182b0d21b1 3 | size 10263 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/SP_TeethCharacterCreator.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2f320040570df63611b89a576424c0afdffe05d0fa7065a994dd6574185d50d 3 | size 3397 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Sweater/M_top_sweater.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c55f8df617d2b5f4113f9c7bf6705e3525b09e7115367ab4ccd3174c994a3768 3 | size 37943 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Sweater/top_sweater_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:742db7ca844edd175d6a6be41693c1233507a6d3f1fb7bbfcfac56dc7c9b7090 3 | size 920218 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/gums_div_001.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abfb27bb06bba17aea8f7b181858fb0420e8197ccb08c5d7612713c6e90ca27a 3 | size 284590 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceFoundationBlusherMask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c888f1d33041662de21ad9b13d7edab0a4f165791c02a46dbb293936391f5248 3 | size 1169100 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Eyebrows_M_Thick.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbf842d03639950edeebf77fb109f186c56576190b96dbdd9530fc126183cb93 3 | size 168562 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Eyelashes_L_Curl.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee44136aac2ec7c80b8e6df6e2706d9bc5466a138dbd3e8992be45423677172b 3 | size 232427 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Peachfuzz_M_Thin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37801df59ce4227a9351a71cf7ba7ec7198b37ff2960cc6b92bab7403a97a314 3 | size 5646784 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/Flipflops/M_shs_flipflops.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48c7a7cad57aae5fed11d86f1eb3a278848f6c7e851da33e0fc37fc852e3838b 3 | size 26275 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/M_EyeLash_HigherLODs_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79eb182079f76116f851ee981ac68911af84ebb71ffaa3576204a04ca8c8cb10 3 | size 10474 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/M_EyelashLowerLODs_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22a27f071de74ac3fb4f76a89d767254dc46a1cd6f8310a426f28b5dadfbdcad 3 | size 10463 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Previews/BP_Eva_PreviewMeshCollection.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54f50611016f7c97e7a30e21fadca6e3887cc539dffe81482945baf178fa67d1 3 | size 2949 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/MetaHuman_Clothing_LODSettings.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc967f1898b478a5ce8cdfcbb3b1aa333452c2b605fc2921507f03e97a26ea3b 3 | size 19656 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Mocap/mh_arkit_mapping_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5665e43a75d75efd59ff4c9aa2e18d5436951eefa7d58aba0452c3ab2825fc0 3 | size 810349 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Mocap/mh_arkit_mapping_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:697d554d1658e3a1f457688a4865f1192ef82e5d836bca65bd611f975ebcb09c 3 | size 241983 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/03_Ee.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae93c4cf21c463ce23092e56f76e6f04ff0b8a02af9008846e60f898ebc7d5c9 3 | size 418932 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/04_Ih.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08e4f5f8c098c677d7f59848c55f137e5b359564eae17311644301c1d8803979 3 | size 418909 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/05_Ay.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3b04c41dda65d2872f2254b0d45336b6b99f9aaf1fc72084a4cc0cd437eeb9e 3 | size 418885 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/06_Eh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b8b44672684f98ad41ab147c7ce00cac35db1e147e59d09bf2bb448cc607abc 3 | size 418907 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/07_Aa.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfe88d7707aff8defe42ff425c778b6e0fa44d0bbc2e2ea3e69622eee643ea7e 3 | size 418867 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/08_Ah.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0cfb22e73aeba75c9d63a20948822c80baae1dcc2a6b9587602ec8dbd152974 3 | size 418860 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/09_Oh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8be2a9126e62e972a871bedd9414c8f234f8ea4e8a4ec51334351e5e64affd2 3 | size 418787 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/10_Oh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab1a0df5ea735506b08edeb05caa28716522d01f6cec62ae117b1a8e7acf2ed6 3 | size 418642 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/10_Or.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddec029473a7c575a9ff7dd53d8013cc0230a7a4807c4efe1333db0012178c60 3 | size 418683 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/11_Oo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e8ebb38c912e457f5e53cae0556173df49acfa9ebab0ba100fd636486f2faac 3 | size 418627 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/11_Or.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6c54d45554219e2a9ac6ebec127377f4e40f248fe64ac9b17df9f134f544f25 3 | size 418505 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/12_Oo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:823055b780aee496acf88783ab8248088a2915b7adab03ff8ddb0afcf0a062b5 3 | size 418523 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/15_Ch.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d210a50ea657d39162029c0bdb0adb12a821aa2ee2fa70c88a535134bd0d47d7 3 | size 418661 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/15_Ew.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36c48d32be68b8c5ebd9249401f77f47700cca5ac79ebc25cbc6234ba2254d63 3 | size 418772 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/16_Ew.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c097556d571411f7256df6ad39deaf6043004ca44fd77dce39f9e877ab7095c6 3 | size 418674 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/17_Rr.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21cbada701cf2b5b2f99d19e752b8d4e5e9907f823eefee301540b6e739b500c 3 | size 418671 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/18_Rr.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42336d5b4b0ba10115102a5e8bbb76c91530dee994e4a70ccfab4baf98c4c421 3 | size 418539 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/18_Uh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73255f0a32428d62b0a5a0756c377f4d5bfb8e18770f51aaa894df5731805152 3 | size 418766 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/19_Uh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b8ab758be3062b7fdb39efccc98cfb4515ce0e05894368a76437241f7d643c6 3 | size 418624 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/19_Ur.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4df2b694c04161afbc33983a869311e8aedf8291066189cb4ce65d63497f92b 3 | size 418605 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/20_FV.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14c06efddec129e4ad438dc383817c006c2b0c138faffad018a00fe160074c54 3 | size 418644 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/21_FV.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:486a70ad9baa51673930e12b1e2d3f2d1089abd4802e786d085ff737daf599d5 3 | size 418485 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/22_MBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc03c40524c979df50b3144ff0ef43f1786fba4965b4e80485a29a819712168b 3 | size 71170 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/23_MBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebff3aa48c6eb53a5fff3ef24e18efc3a9d163a6d08be31212242ed382925217 3 | size 71027 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/RTG_metahuman_base_skel_AnimBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26de8e8cfbc8e36c4621c44694f10040e1b3ea2fd0fd4333cdf5d0e5133db2bd 3 | size 41329 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/metahuman_proc_ControlRig.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2631eb14faa3299fedf5de2e56290fe69505675633f95ef492dcbd499232348f 3 | size 2009742 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/MF_AnimatedMaps.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b76b25d1dc050f061220b02437bff5b165ff7996f91898914fdeb2b15fe89532 3 | size 24531 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/Baked/M_Head_Baked.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa6389a2af8a5e7d9cec567b41128aea68bb00b6987fa0e93f7344c5e0f7fb9e 3 | size 212426 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/MI_EyeOcclusion_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:082c970028be8feea03a64344e2f2eb6f31829198f62444608030700dc15b5a5 3 | size 22194 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/MI_EyeRefractive_Inst_L.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e31a7c802fabb899da5af2b91f5d00f908c7516157ce0cf18f955f0b3c8a383c 3 | size 13300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/MI_EyeRefractive_Inst_R.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d157636ece6f854d471332888f60f15e34e335921e3fffec6f33af03d9487e39 3 | size 12416 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/MI_lacrimal_fluid_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba0b9597f44e3d4d4fe52f4e95cb57f937f72186b77550ea0f38e29d195fc257 3 | size 11900 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/SubsurfaceProfiles/SSP_Eye_Inner.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f7ba097c37161d64636b94368a7099b2b07296eb8a93e34fc303c97c94688ea 3 | size 3321 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_DefaultTextureLinear.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:606381c1a361f9e20d3179f54b58badb8051a2bc90a95fa94cdb1bccf9797884 3 | size 33981 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_iris_color_picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88eb2a4f5f3ef62fa2283503348e8d3612f78a2c2323113e05b560f8666eaa58 3 | size 109372 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_sclera_tint_picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e71b499046b7f639f900aeda8464d6063dbe3251e763af30b782a636ba801d5 3 | size 38004 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Fonts/RobotoCondensed-LightItalic.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6bea97c6a445149c831e1599b86543e663bd24594fe83104bc3268a3f75d260 3 | size 176662 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/DefaultTexture_LinearColor.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb6b8e6d293f3329ccbc2b01aaa46f8f1ef3a401baf594e3ed246f823364d8ea 3 | size 33993 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Flipflops/M_shs_flipflops.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e3d1db33014e2171b6758fad3ed69c5f20a64b7cff7044df3728f826fa4cb0d 3 | size 26508 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Flipflops/shs_flipflops_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3412f43f3969baf21aa448a5d589a2e651e81265e40bd15f24d24b74ad5819e3 3 | size 1058277 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Flipflops/shs_flipflops_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21e34f093b78470ff21b3ecfa34dcd38d611ce8297d3b7daed3e554a6fd615c4 3 | size 2028527 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_EyeLash_HigherLODs_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:147b51fe1140a23e00d8686b77437669a3ad7900b725f6c850d0ef31890309ee 3 | size 10802 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_TeethCharacterCreator_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:510df6e7a27eb4d619665d5254b6dafb122de2bb42be656ac57fe0850b585584 3 | size 16281 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Sweater/top_sweater_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c52e10b70bbc22baeaf38035476ea36e18da4f2428b19586eecec59d7cda33f 3 | size 7330300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Sweater/top_sweater_Mask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61f7994bdf30bab654116459940799a1ae7ceccce80c5996e74cd719732ba3a4 3 | size 926002 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/clothing_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:268fa4efa75a146cfefa6c674c2b882016c1f4c9d03e6ff9893eb373d6be7919 3 | size 5737 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/T_SkinMicroNormal.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e602ff83a579cbcb260647563448aee5381f872e03f3632e89e93d83158eeb71 3 | size 2624896 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/T_Teeth_mouthOcc.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a76f91bb9c6b7119b393c7eb4796b5513cf982fe0c52d0301ea6dc0ef2405e44 3 | size 279230 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/TeethGumsNormal.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b504d1ab9c306548c585e2a4c2144bf93c156a8d71d5c76aebe8a8a9975248e9 3 | size 40258689 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/TilingNoise05.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ae0f902502d6d4e681fc3387dffa6f403cb6459b153c7674065f19987eb4aa9 3 | size 2088776 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/gums_color_picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07054ba2626e1b8acba0f3185417e93459c18c3678be64e91b5ba12cbde175fb 3 | size 77253 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/plaque_color_picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c740c642649b2397169dd927b4f80243e3a13787ef3050549aa4fecb6bac330 3 | size 79659 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/teeth_masks_001.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87d367f4200826dffc2f5841698f29f699e32bbaf8cd3d3aa9b4034485cab0b8 3 | size 3022880 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/teeth_normal_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67b03527e299bbbdf31a2e83cb07f2a3880c067cfd50992835a4f2c10433fc49 3 | size 3440852 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Yogapants/btm_yogaPants_base.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bddf43850abf35f1bac241b67409b8b1a9282944def6077ad9bf7adb846e3306 3 | size 30235 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceBakedGroomAttributeMap_LOD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:856baffb44168a10773850a8b09010da03a5a8e2b7d6b5816577cb941ed3a5ae 3 | size 2168785 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/MI_EyeRefractive_Inst_L.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb8614ca0b6e325acf57a501355b613b905474034b6e5cd1d03323a20db49c94 3 | size 18489 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/MI_EyeRefractive_Inst_R.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca9eb433df14b501ba5e425f1d3a70f90d485d9e2e7a9bf66a5b6d43e170e9cb 3 | size 18004 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/M_TeethCharacterCreator_Inst.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01d70f489ef06de6a97db2499ce3ac0fe3d248a4832b11b7af2e81e2e77dc753 3 | size 15239 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/00_Neutral.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db10e787458e3f115a309b39cacc2802ba43cc58b5c562246c0f878ac449a2a6 3 | size 418573 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/01_TDS-Ah-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bb8d223511c4d4cb4f0dfa13784938e18afc6c0f9ce898e2a9cc457e2961f6e 3 | size 418791 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/01_TDS-Ah.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d28eb4e877bda421590d390fc3b5cb149cff776fa9648c0d5709bf1f7ea406b0 3 | size 418640 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/02_TDS-Ee.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5fee8462ac919937441fda72c8fa37291ea0c7cb773d591f0d2e4ee04ffc318 3 | size 418714 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/12_Ww-Oo-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ced8be77b364557ff30a699276ff322bc67a9d13e299844ca3a55f241398efa 3 | size 418663 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/13_KGY_TDS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb3731fab23d281973385c4f88aad6ed322c578797281fc895023b4b4e13c41b 3 | size 419045 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/13_Ww-Oo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edfe83cf90cd8cb24ab536c1c3352240fdf76f9b3047622d8f1728a5f8e55cbe 3 | size 418521 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/13_Ww_Low.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:587965fae3e83b16df0fcc19fed006a36e058bfa71980b52406e62b9cfcae9c0 3 | size 418540 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/14_ChJjSh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b546672420358db884bee2e5e0aba0d47aea5fca18e51adc1f58a98b2ba81693 3 | size 418897 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/14_KGY.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:deafc44bd74cf4deeff8d69ad09ddabc15004e1e4dfefe95afca090a68a329f7 3 | size 418695 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/14_KGY_TDS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d193b5b56b9fdb2422c060ad601d61f6571ef6a882d7340e846b1ad45c9e372a 3 | size 418897 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/16_Ww-Ew-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:422e0255d25868ffa2c18f9fd42b96648d7db4e4dbf75501aa7e32ce5fc5444f 3 | size 418638 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/17_Ww-Ew.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a1abe88b9c18c8680935aadfbf1cd337aeb72894d4658a10d7f12ed4e491f0f 3 | size 418474 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/17_Ww-High.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83a2610526a512dd1a9de877abdd4becceebc718fa031323600f1963248bd13c 3 | size 418563 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/19_FV-Or-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:537cc0d3bcacb90d6b621a4239a4518556f9a2ada3ae91fba08b6411c61ef331 3 | size 418639 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/20_FV-Or.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd9d6be9104f195780e7210b3f4a13490c67cf5091edbdf235e63d1a46f35823 3 | size 418511 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/21_FV-Ee-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd4f5a46a8520374632d45eef4a09aa62702bb1dce1ddcc255e7a4b9feea8e84 3 | size 418660 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/22_FV-Ee.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22068c354cd3cb7219fb7975b5bbd0f920d9d58b910f84d11aa68433d85699ce 3 | size 418487 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/24_MBP.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5e5c7bc3913fb634cfdcd32923b8d0aaeca6588c598d24196bf35a6e9b54887 3 | size 418564 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/25_MBP-Low.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02c79dbcc9dece2d1560dd1921aa32030b759d3ea70c8003710221beb5e6a64f 3 | size 418552 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/Picker_Assets/refresh.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a4985e8ef2c7155b798b81df201808ee0496c2bdbb42008335218c59439fe28 3 | size 106381 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/Picker_Assets/refresh_down.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a0aab0393d8b39f8d417ce59451289f2ead71f56aa3c1f67683ae5dadd9fe20 3 | size 27933 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Eye/MF_EyeRefraction.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75f258e5b7e7937633e6b15c60ffb02b0b1e3cbed6bf7e37bbf74287386e7011 3 | size 43020 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Eye/MF_IrisGenerator.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7831840266c3a33a70dcdfa9a05c0104b58c7736bd6833c4bf74e914f34eb2b7 3 | size 42847 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e403292839de925ed3e6c6bb9641d66d0d4a73fa3474fc56798f102bedb7ca00 3 | size 39345 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_01A.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:092890824feba6a1f0f6ff10b9c093832dc6c9eb8a9aa9d147dbb1f2632cab11 3 | size 36087 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9c66436928c26204d7bcad484f91a923431b24cda3c84a3bcdefaefe54e673b 3 | size 25626 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_02A.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b67b646228f616aee85c1d78b0c0f99954668a9c2d41d0ab05cac585334ab98 3 | size 24372 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_03.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abb35bbb739fed77d206d975358a53e003d7734eba4fa71cc4d15e7df9a238d6 3 | size 27699 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_03A.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb3200e0b8aa4908bd398f1eb83144fff4efc3d40855b8fd22aae36571e49916 3 | size 25270 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_1x1_BakedGroomTextureBase.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e92c8a76dda6e416393e8db9c506e614ceb20bd651fa80f7da1a77a6f08f265 3 | size 3669 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/T_EyeMidPlaneDisplacement.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fed0dd3507511d0c0965fa7e6c7616b3d77edb88d03e6d0450d7389b9d727cc0 3 | size 1104902 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Flipflops/shs_flipflops_Mask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c4d1d6763e32368d405011ebb084d7957e0fecf149757c7f59e3099e83b7bae 3 | size 1636735 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/M_fabric_simpler_fuzz_option.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aeb1108721c5199473b56f7cb3897d710d79873e6592f89a5fa82e0b1f4720f1 3 | size 264678 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/clothing_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77f3ff3e9510adb31a8bac6d9ea646732dc210c6720ea5f5641ac30f31b3d64c 3 | size 42993 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/skin_bar_color_picker.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f05d66725ae16932a4bf2a0d10c8fca486b44e40d1c94762cd949ad1e5b9d68d 3 | size 21048 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/teeth_color_map_001.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:901bba947c61230e44ae9cbedffbf9e7884dfadba7261a9a8a2015f8bf2916a6 3 | size 5224719 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/teeth_color_picker_001.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f2374118b300292ea1a5ef710129045b7f6131c757c8bb92c2483da0875bb4b 3 | size 125994 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/teeth_sharpNormal_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a9ee463c4f7c70824921ee75e3a40b81954f42e2fb5dd2437f8a2ebe9b54e7e 3 | size 3278784 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceBakedGroomRootTipGradientRegionMasks.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42aec592bbf6466dedcbdc9d5ea3dee19653a1ea1f751e5d567e59677a2f8edf 3 | size 34725 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d80765f07e436ba9ec4d5f270bca41cc8bc59debf803a170363b1a83535f197 3 | size 89087 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Female/Tall/UnderWeight/Body/f_tal_unw_body.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1115801e60a60a4714f69e91b670ad5137bd5572fb449ac5210a93afd8006c1 3 | size 7530523 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Helmets/Hair_S_Updo_Helmet_LOD5.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c990fbdc3c79eb38ae80f83702ff6e5863593147d7debe0e7aa796018a80cec 3 | size 38174 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Helmets/Hair_S_Updo_Helmet_LOD6.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6efb0e9cb1c591c7468b3c4eef3106c9e0a043a4f7ae165d0d4a1d611683d39 3 | size 30538 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Helmets/Hair_S_Updo_Helmet_LOD7.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bbfc837d7909c58abf23c713b4a1dc44132d5813088502cfef65f1a8be45893 3 | size 26916 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Materials/Yogapants/F_unw_btm_yogaPants_full.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fc98a976baac7774caf3b27bbd2abaac11b573b02bcc61b4520af8aa61964b3 3 | size 30030 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Joy-03_Joy.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f8a115dfcf957492efa4f9711fd62878b7cbdfa74c69e8b7791f37ae8685514 3 | size 419048 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/02_TDS_KGY-Ee-.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d737feab8d7d5fe0ccda8397b81dfb58b8f893f61abb30c2a0eb9c779b7e2c8 3 | size 418888 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/02_TDS_KGY-Ee.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58c10ed14866217750986535ad2bc266bcd765885dbfa5ae639bc751bd7ea50d 3 | size 418717 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/15_ChJjSh_TDS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7153fa4a13f33c81593711a8132b419c43219eb23d5d83a69bb4140ce5d563dc 3 | size 418813 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/23_MBP-Wide.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62274dd8ba57f28aaa0b8bedc82e7e0fe8e92bff7a04d4e7547f363b3f9dacd3 3 | size 418597 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/23_Tongue_LNTDS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92d0c693b43a6fc959ac50203efc889af7b2d3e7c55bc05aa52bd19f55618195 3 | size 21735 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/24_Tongue-LNTDS.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:357aebee77bd746a9d998e7ff117f830bbef2bb2be9863b8ba14a79cffc9189a 3 | size 21652 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/24_Tongue_Th.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50fd7903b3ff6e14189a5aa9639b0d53f47744b66964f98c289de1ad7b1290a5 3 | size 39158 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/25_Tongue-Th.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2a632aa47c78fbe12cc0faa9f2a35c3034115a202557db5c2e6b7a9480b594b 3 | size 21645 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/25_Tongue_KGY.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feedd6d88013407722b883e2d6c581020646ac0ecfaf783b73e39fc21134ebef 3 | size 21739 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/26_Tongue-KGY.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de2df831eb2faca7ecb2bbc74b48ed3e876a3cad4b80b89cbc32ced2ce2e63f1 3 | size 21666 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/26_Tongue_Rr.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1d9f937ce64d0ad45c3220376941bc8edbf983c0b313563d978ae5120989c88 3 | size 21689 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/27_MBP-Narrow.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f68bf2b961fac927c0dcf87bb60deefe6bdbe16551b1fdb1579c63aa36b7d480 3 | size 418549 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/27_Tongue-Rr.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:566acc99ad51156dc3f7bd109f269deb08b6951a74a2c3b9dd4404a54499fa68 3 | size 21621 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/Picker_Assets/epic_games_logo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1b9f8e981d9ddaef09c03f5d2f27bb65ffbdbf05247aadecb0da4208d2362b9 3 | size 341817 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/Picker_Assets/grey_round_button.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:403a2da15af063e5722049288db9288050479b3354e06939c790c1e0ddeea37f 3 | size 50258 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/Utilities/Picker_Assets/refresh_over.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef4111f0e48a6fad75bf9241efb21f0f880cd392bc8bbb78322b13f44174c002 3 | size 192240 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_RoughnessMult.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f22d53ad54358c3adc5a58619ff5954a729f833c8ccabf26bcd10565d2003904 3 | size 45460 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/Baked/MI_HeadSynthesized_Baked.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:366e943209fac62b5fd422302e8cb796c8e58393c45898cf11114c8a5f9cb390 3 | size 12212 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/IrisTextures/iris_001/T_Iris_A_H.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8163ea1f22f09214ebd67dee6afb5b7583cf2ea865c06a0b4944cbb3e8f0b06 3 | size 270432 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/IrisTextures/iris_001/T_Iris_A_M.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:109b7d30160c91712d87ff2f749506f392497a1461674abd21313d30797b45b9 3 | size 1802068 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/IrisTextures/iris_003/T_Iris_A_H.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4ead0ee38391a2fb66de7bdebe5c356536b0c9f6a769477f23bf735b50bb210 3 | size 271764 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/IrisTextures/iris_003/T_Iris_A_M.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b79926b2fbbe082b22c003e36e18548464d6ece9451ec2cabfd43bfce85cefd 3 | size 1801352 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Body/f_tall_unw_animbp.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb69f86f40057bc5d384b2615cee4f8ddb81e5449ce35a7f73345b83c3d7c2f9 3 | size 1052168 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Textures/Shared/8K/female_body_mask_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51d17072e11699983a7b32557946fcd287880bc4dca42a16a79c5b2e87b5057e 3 | size 2868191 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/CasualSneakers/M_shs_casualsneakers.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:984a2b9f2b4dd4932ddfeea845b6a8e622cf6e65bcbe66457929891f6daf8d3d 3 | size 28083 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/CasualSneakers/shs_casualsneakers_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed0a0b6815c74b037355c355d13a4f9224042de5c6869e20b3b5cdb14d031e64 3 | size 604169 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/CasualSneakers/shs_casualsneakers_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:541c4d9a32d094bf34c90e75cbfc910f2274f4847c340d546977edb8085d5963 3 | size 10108350 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Yogapants/F_unw_btm_yogaPants_full.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cc52b90338ed2946b6ca510f952c2063f3d150ea528aa79f01d8e443dae232f 3 | size 13328 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/FaceBakedGroomRootTipGradientRegionMasks_LOD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc7723f281762414f737ffc97e61c149aa3fde79c03c4a9a082191512be5d8d0 3 | size 353497 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42eeb473b82e69b158cde087772c6e95433faac497f358743adfa9e59df676bf 3 | size 89096 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bc4f4f4f5653621edfb438383da709294461c13be09784bdfbc7bca81ae12d0 3 | size 88430 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e3f9da9da92f343ad05812236a6966a47224c640e7596729ce83021bed0f6b7 3 | size 89158 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD4.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acbf3032c2d62e89e16ff8ee86e2a3326df8780fb2c709fe8a8e34402e8f15f2 3 | size 89323 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD5.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:204b1350d7df70d937f6d7a39c6118a35c8bc63c012b3e1395fe99d7b4eed8bc 3 | size 89551 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group0_LOD0.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a85673740859ba9aa48e9e49d0f2c9a503acef58d9a95e6656d236a3614b034a 3 | size 1054870 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group0_LOD1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87b186cdcaaa636b954a83b4521e2443e218e6fe60d56b9376f2dcbf8b94e60c 3 | size 674193 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group0_LOD2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23bc081446bc9669598674b6cb1bef2feea915cb32f8979ea8e4c2b887ad944b 3 | size 409289 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group0_LOD3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ee6d5ec4dce8fa54d48b140323502f9c20e417c35a202504aae88144206651e 3 | size 172364 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group0_LOD4.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1df996c3200873acdfc16af14a74bdda049f6eb6d303f3f7a5b04186cf893bb7 3 | size 92088 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group1_LOD0.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d8a24af8d839db119c16d8d1c40f764eff64da1e1d592541e01a52419e6c41 3 | size 491258 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group1_LOD1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6aa35986fe1a6930123f421a72dfaf769cf07c841091de1089d87581708ab6fa 3 | size 251145 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group1_LOD2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e54837dc8ce14629a4d40581f02c7979445fd27ca8582ff7e048b3486d76ebc4 3 | size 157211 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Hair_S_Updo_CardsMesh_Group1_LOD3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a648afa09e3ceddde305696959d5ece5206549c8b161f58e6ef427b606d14ac9 3 | size 103423 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Anger-03_Anger.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01fefb5d927fb3d64a39220d1f671cde31cf5a8892440d15af1ed6f64287d461 3 | size 419104 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Anger-04_Rage.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:773fa9cc7eba3f7ef883a561db60e5bf2a97a2b24ea7e7308f646cb7131f618d 3 | size 419220 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Fear-01_Concern.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4d25458acb8241fcf272118ca8ab31304faeeb74246d03bb5920036068e5550 3 | size 418992 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Fear-02_Anxiety.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22e1a911424b111a780e30e62b946b05ee0b7ebfa2aaf05364a16019509a6b31 3 | size 419060 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Fear-03_Fear.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0a57422efb0d2364a2e8c61dbabafb27266dd208c317b3519f6d4d3846b837e 3 | size 419080 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Fear-04_Terror.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d20e8c2d9a6509fe8daaac10ef04f1204e62583b9a51d465abe80219ce77688 3 | size 419236 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Joy-02_Amusement.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7e38499462150bac4f7a0dffe8b4bf63782add065334e14b225a0680b654275 3 | size 418994 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Joy-04_Laughter.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce2693e146a25220fdf9ed216783afcc1ab74303693845df9629ff8de69a906e 3 | size 419100 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Sadness-04_Grief.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07ea572912de9b7b7456ada9fa9a5605a8cef90e67154782730c7803a5f22233 3 | size 419098 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Visemes/26_MBP-NarrowLow.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0aec24c8d01a1213266247a78c1ecbdc99949a582f3c083abb609605c585d055 3 | size 418544 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efe38a775aa265df336bc8d2df5fa426fc511254b130448d6c71365cfc1d9d14 3 | size 11985 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Materials/Baked/MI_HeadSynthesized_Baked_LOD2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e4838ce0917a492aeb5f4ca5a76b8b25787ade91c4c70f7606542630d6a703a 3 | size 12588 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm13_msk_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c6465ada1aa1ad1421609e98dfcc22536561c23ab26307d52e3f27e8122eeb2 3 | size 72441 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm1_msk_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac6cf3642e1bb1dffff549417d56b823ae6d2a738e2a6f2662b1218692f965f9 3 | size 218092 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm1_msk_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9eed4e7047c1f7b1612718eee556f33136c2e350f847f1c6be058a05b970f90 3 | size 362135 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm1_msk_03.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6711174a3498f43f53ac6b49be37ede8969664efaf7445312227ce03fbd97de9 3 | size 752240 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm1_msk_04.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8d150fe65b614cde633d24fb50226a286311ef98261daab3fe844e2af4e40a5 3 | size 172882 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm1_msk_04a.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bc7bd37bcb1087763154b51a883f6e407066d5f5e1614d377dc1525ce88c5e4 3 | size 298340 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm2_msk_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c46c9483b1df9ff55f5fcb50b712cf6cdd230baa446f6992c14e448951aa067 3 | size 284585 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm2_msk_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3767144b70df53a49f782c5db082b3312456fad72cc6afaf3c2a11c7277814e 3 | size 554783 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm2_msk_03.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:679c12dabb650d2ed05a1607086a6868b0dee79ac8304f893a47febd8099bf29 3 | size 329833 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm2_msk_03a.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:952d563a3a0aab5c7d8c9762044090c7d9a6650cbb252057c3829911abe52176 3 | size 468013 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm3_msk_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f2f02d756623eddf220e2c1cf08ecdae3d29bd9344e126eeba148dd68bc48cd 3 | size 213812 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm3_msk_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4808ca367429fa3857390360da4661c492fdba243350ba46420a519ba3ef4410 3 | size 449832 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Body/MetaHuman_LODSettings.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cdd3001c24e04e90e59a57e0521bfd679b5f3bd18754a8255020a09e8ed23a6 3 | size 57317 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Body/f_med_nrw_animbp.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23068c90fb4474611339e8e833a79dc13308ab7c3e553902b0db8fa39f81e74a 3 | size 1052173 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Body/f_med_nrw_body.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bc2b1e47a9946637be85abe5448831ad0ef47bc6b26d27a9ecb19d6e7453e9c 3 | size 13831350 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Body/metahuman_base_skel.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b25c34065b80ca5610b7f55ed9d5198cec54fe09ece6fd1cb289984f95445b46 3 | size 106103 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Body/f_tal_unw_body_Physics.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f5f6869129173c72a3f297d628922544d6e603b35f5ba041795bfc32f78d0be 3 | size 38259 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_calf_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e3be741de5006786f98740b38164e8c19bcbdb2bf459657f56bf155e4561069 3 | size 149122 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_calf_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aee9dbf179900769a34fdb8e662909eb185f5a76cece33c50d7efda65016cda3 3 | size 551106 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_calf_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55e3eeac6e4e47691888a9a330429ce70cc67135c3b3c94a7f8a54738f68796e 3 | size 149055 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_calf_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21d41b18976f6ded66fa66aeac8059043f1214908693e62741e7a87b3abcfc5b 3 | size 551106 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_foot_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0712a67180baf64bba0e4695af406f73f25d3784a7b22b7b97c4a47d492f82d7 3 | size 108195 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_foot_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:607da7c8c35d3d5401939f02e178e1e9d23a4a433af698a1ce413da2de15f13b 3 | size 297439 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_foot_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b8e9aad3d1a517fea4a9829e0c9f2429effc38877dd486f520c24a64ede1c50 3 | size 108181 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_foot_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7dc89daeef47e94a75dccebbfd471a2b68d5048c3b08c1528827fcd94740ebdf 3 | size 297439 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_hand_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee17c5cd90c38a3f7d14f359234353dd6c996214f760df2a5b0329b66a28d353 3 | size 121874 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_hand_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a69a154693f2b270cf43614b3f6622aad63ef677983c74c9d220948b43b73329 3 | size 381395 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_hand_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:009494285ca712322e24fc1666242754cec878fc226feb8f3f320b180de5056b 3 | size 121912 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_hand_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46b167becc0626074a69c16fc708895f87281dabb56f9811a9e41d7d997f034c 3 | size 381395 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_retarget_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f70a8174ad458e5c1f2416b6947b5339fe84bac1336566e12bcc1af1dffdad5a 3 | size 29286 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_retarget_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad30b34630e878dab3c2ad5f8f1ebbd71c224d7d65d485b9a7134333db413b74 3 | size 92382 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thigh_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d04fcbad5bc66a264995e1820e1bfb4d39706974a7a46a9760fcf357b94c3ce7 3 | size 258579 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thigh_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:553589f56bce3b48167acda3dbedf2f684141624a4ffb87e124923cc2f1aa9b1 3 | size 258590 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/FemaleHair/Textures/Hair_S_Updo/Hair_S_Updo_Depth.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0a4a9e9076e60dab1827148a5a7b3867b8de56c0ad6235138c584814ec569d8 3 | size 4296826 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/FemaleHair/Textures/Hair_S_Updo/Hair_S_Updo_Opacity.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:683ae2b84605c65ac6b7d539e6978b99c1b256b563f93299b0cb4bea87585f42 3 | size 1050734 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/FemaleHair/Textures/Hair_S_Updo/Hair_S_Updo_Tangent.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d97a51bb0f4d8d128bf4193711b1e6ce8f550780e4d1489ff1e26fcdc047ff44 3 | size 6407959 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/CasualSneakers/shs_casualsneakers_Mask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ac167009154d6e3ffbeea0757c49dc6383e4d7563cf1e004406fe927a4584dc 3 | size 1007997 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/HighlightsTextures/HighlightMask_strips.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fb516a0b25aaf9b896b06c36f058b4280f467838e40224d346b8cf5e71d74ab 3 | size 444090 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/DefaultMaps/black_masks.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66392c62e0a0e56e513227f48e919f1edcddaa4a36291a0842a5b7c25a069a99 3 | size 4409 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/DefaultMaps/clothing_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45aeda512bc945dd2373a5e729f25f0f6749f3fe577e852d7f28c2b77ef75760 3 | size 5761 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_fuzz_4k.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e57056128f7fa0b8a2f9c2b72e17653c7d16ca6cf05fbdba2c78c9dee9bd014c 3 | size 31948876 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_heather_04.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19a39edc03e1d4e9eaaa32b50c41256c46c139492c8eb7be4a453408a54e1d7d 3 | size 4683531 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_pilling_A.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf8128d64114a114f36ad2ceea6f233ef91e8a99e10941f56ddd582135e9ade7 3 | size 5292319 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_pilling_A2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8654b311230cba1525c7aa051be2ec137aadf1aaccc9d82931b5deda22d07475 3 | size 3228194 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_pilling_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca347255b5df84e82161f1d140c09fa34929d9d13f8b2cd50ce0f1171781be54 3 | size 14645027 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Eva/FemaleHair/Hair/Eyebrows_M_Thick_CardsMesh_Group0_LOD0.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfc17d208d60ab0e039a80b694b42f5c33e23b2bbcc0066c2605cb83d339e441 3 | size 138532 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Anger-01_Sternness.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e130bc98d212bd54955e03adda3d7b2a9cae0eac14b054b0edfa69e4a07238e1 3 | size 418998 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Anger-02_Indignation.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab3a8c82aff01abac2ca522da7409718cc28bbe157921f4e40aa5f41c8a1489 3 | size 419036 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Disgust-01_Disdain.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77d45a9f46d62ea6fd8a2bae8c1f13dc858524e5030d3e9246e8315b3e8c9d6e 3 | size 418980 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Disgust-02_Aversion.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dd4d79ae6464bf9f7ef8a6c97447ff19930726dbea5572293aaac6fb08fe35d 3 | size 418961 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Disgust-03_Disgust.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d346ef30e0f431be7a1024b0d75d6299fb5f812e634d8d18c8f54a9ef369d15 3 | size 418994 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Disgust-04_Revulsion.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a9fb28621bd6f72c46b9702530475f1c5e7e1b839167401a65b0a86a24d641d 3 | size 419066 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Joy-01_Satisfaction.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cea406323e4f507fcc5fa58a75c5a1044362ee3fa15056fe9ce83edb2a5f70ea 3 | size 419021 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Sadness-01_Dejection.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69a9b25d41e9ce061f28e19976ccce58b98b3291899e945d42cad3ae931245b6 3 | size 418996 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Sadness-02_Melancholy.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:440a12cc6ad9d3b263216689f080035006e27f24f383ebfbc5b9963a0f94c880 3 | size 419004 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Sadness-03_Sadness.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bb46c280bb6cb465aaa72c0de1f517c6944901f0eff8e261f0f43d173a97dfc 3 | size 419009 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Surprise-01_Alertness.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:045441b842dae59dd94b2a876e07a550428d62d19a55c6e24c0d71c10d962a6d 3 | size 419046 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Surprise-02_Wonder.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0361b56ea1d9cbd96c2411fea36247c9fc376c300624d2be4a80537a2f21eb58 3 | size 419063 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Surprise-03_Surprise.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:392653e110c4e1263c17f9793cae6d1ea0387c98a5e20b37868c66b32c89a4c5 3 | size 419145 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Common/PoseLibrary/Face/Expressions/Surprise-04_Shock.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e27c9855dc819a370c20a9dc73bb8f002a3bd53f1f74b5eaa9827569175b19a 3 | size 419178 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/ArtistDelights/SkinAccents/T_SkinAccentRegions_002.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41cb8b93b6ec41db52da7ba437919caa0b9c699601206e23187f50caae9d4736 3 | size 308708 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Eye/MF_ParallaxOcclusionMappingEye.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b78d15746f1d878b0bdf6a189fda2ff3f10299667f8b60db8a5989e012fa99dd 3 | size 76588 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/MaterialFunctions/Head/MF_HeadMask_TexArraySample.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e100bd3947f97cc9fa04d9a8ee0e7d1123cd163521e16ec191e8f5d027dddd0c 3 | size 13296 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/RoughnessRegionsMasks/T_RoughnessRegions_003.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22ed509c2209ec619895920568ea1387ad4a5db3cfb536739e04e122fdb2b267 3 | size 40037 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/RoughnessRegionsMasks/T_RoughnessRegions_006.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:342e6b38f1b0fafa294cb2aad9d7d3eb0f112e869b3acee8936d68cb542b110c 3 | size 48046 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/RoughnessRegionsMasks/T_RoughnessRegions_007.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:115ec8a41d0b14982309cd9bf988a46fa9d63f74a9ff0697d92f2c8a22460337 3 | size 34229 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Face/Textures/Utilities/AnimMasks/T_head_wm_msk_Array.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6644aac0f31c8e579a180ec453e626e4f9e55fdd6de382dfaff6a31a347cee4c 3 | size 2985323 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Body/f_med_nrw_body_Physics.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ff966c828035b3c8b82ee804e060fff25e296a1284f43457cc3a1fe4e0b9bbd 3 | size 50821 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_calf_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93c71df294be91d487793b80f45eea7936cc491de7ad02570842c007412be755 3 | size 149315 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_calf_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1767bf10c76d6bb35cc12f8ee36e5a2ae8a951336ddb6152b76f1734c54866e 3 | size 539933 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_calf_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96ae0e455bb5622a2c15cdc3368809f7776d561bfc9740e753e8ae3162c71c04 3 | size 149315 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_calf_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd9970115ae3beeb164e20422137ece1d0207b0fe684f49be039aec78e1fa5c5 3 | size 539933 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_foot_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08371529b67c096f4f6365b95d6cca7f15f4564892ff36007d928bd125976dd0 3 | size 108275 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_foot_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca3212170c754939c7ec91ed92518d5d2e775b566f46de8fa2f28c48568ed3c1 3 | size 291684 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_foot_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f366081d2d97493bbefb7fe0805e2f5ae5511f5ed1f065fcbdfbf4dce904c29f 3 | size 108275 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_foot_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a62b2a4125f41135a21baf2e375a6b8e274c71591612c399f7cd97ad897ef975 3 | size 291684 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_hand_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f41fda40941fa30283c4d437eae4d3408553a0fc2c86a4bcf71be7529da3a825 3 | size 121955 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_hand_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8ab8807be069f1deed96eb8ce4e43fac5517de538130a35cad7a45065978098 3 | size 373834 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_hand_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f062393d14ff8c528ef9e4f71bf965b069687a5e209b83244b376fd9de8d6bd 3 | size 121955 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_hand_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:347949c215e9d9db4c3b1da9d9186247cce1d4b03fe261132b7db155796934b0 3 | size 373834 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_index_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c40f0d8b492941b9da075b3f85bedb1df5146d6f3a56470dcf7e1512bec79a0a 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_index_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b369f170c5bbec730131684e54383cab9f5c6fd1d692cca5b3cb3d09d4dd6de0 3 | size 94617 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_index_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbf97819c2082fb0a32294f76a20b2856917df34daf000b287acd7091d2e4417 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_index_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ccd75ed5cc391a7b1d139a15db3eae11f33c1053ac3e3611514dc53af00a27a 3 | size 94619 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_pinky_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01c1c92f1efb32f7cdf76ecf805498d29b6680dc5599353b7081c866b70c9e2c 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_pinky_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434c79b47ee6c443bef67b43fcb3642f67d8d7523cc6727a6628dddd27af7dff 3 | size 94529 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_pinky_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ba55ff9f7bdd854df2d6ada63cff65618d3bdf66bc20da09bf3e5b5fc2019db 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_pinky_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea74880bccd4df901d4a7050cf6f015930821237330987799b81e2ffbed9bf5e 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fda64f89bb96480aa2803447885527fd0788f337709e12341a7e7939ffd41553 3 | size 108292 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9a6993094ab60e00e8c64f55cbbf4ef9e96a42332f0e88875c9826db5707cac 3 | size 291725 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b972463804eb2ccc0c6a7300313e57e4983cf1ed465847e5af7335e31ffd74f 3 | size 108297 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa1dd3f453ebaf236a1228a9344b8e4caa9b4d59bfd30004b60ed9b6a828de54 3 | size 291725 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d11b6b6c17e415032c04e7757651e65903c8ac33f838ba6b153079bce29f1fe7 3 | size 94611 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8d38b93a4b90cf001cfaeb3ea3c267782663f70bf1887ea5968f4303b072a35 3 | size 209847 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3c0d47aee5aa1acdb53c0f5f4db61be4fa2e7a2391c7aac244ffcf8057e9160 3 | size 94610 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0900f0552a3578bbb870d0642aaa8ff69f1c7e4b426d981f54d18b7884dbfebd 3 | size 209847 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a6457f3a8309e8d70a7f9ab25575ff0782f99178b3ce7b555f5e07a65ddbf64 3 | size 94611 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60c5fc726ddc47847f8f9c4bcb045154b6f4d1cf1df963d041bdae3a1c9c05bb 3 | size 209245 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbca7a93e5ca52264fc12462de33bb81d8773ec63e49d62bc51bd922cda1d5d9 3 | size 94609 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_ring_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9032f33273503b210b4b6477816adc8549d0d45975fd33208f04e3776ccdf45d 3 | size 209245 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thigh_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b0ed23d2a107113a67097ad0384f8d2763f1150d616c88553b13276807735d4 3 | size 258762 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thigh_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9427e4f069fa8143ca472ab9b1bc253578685ae436815336fd736592b2b43175 3 | size 1213201 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thigh_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abae9e8df19b70d1d1821df79cc01144db660f83d44bb0e9b43d3dacdd8bf6c6 3 | size 258670 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thigh_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16f1a095aa493df45de87ff7f16e496308088538d08473353e6ee6e39b1580f1 3 | size 1213201 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e01870b0a00e9fc083265b8758f80edc201dff0e5391e6c98886977ced9581d 3 | size 94607 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:861cce5fa47c99931458aca18242e7679c17feee589306a812f3584f729b2726 3 | size 94615 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19e77dcd9b8c81da3ffd3e9df8e8a1035e6d3849789249833076121c8c7330e3 3 | size 94611 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ca9b1a041036184fdbb635f1be624ed923d6e86c1e7470a60eea6cf742ad2e6 3 | size 94619 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bade11bc51f1b9a8e2e2df7bced795482a35bde6bbdc3e098b744166ac7142c 3 | size 94611 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Medium/NormalWeight/Poses/f_med_nrw_thumb_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebcbe6f668a33daa4d08b159b0941edbd17baba30f15c9c77d2709b5e5547e2a 3 | size 94611 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_clavicle_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bc549390809836663902b260e23a5698f69e82f0dcc469e310bcbd5188156f4 3 | size 135659 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_clavicle_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c43831ffad5ef4ccb242767e59f8ff738f4d3757ca371372e2ab72f7e8fbad52 3 | size 464851 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_clavicle_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87d44c21df8572068d6010c287c9694def0d3a30f77ec04b1e9856d7c4ad6cc4 3 | size 135548 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_clavicle_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28ad1ca58824745e015e38e1ed5133169c9eb514768d9b1a969fc0899d84a9c5 3 | size 465453 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88565de743a5354fb55603591ccfec7a8cfe0b2db703d14ae9d9bc57b239cd07 3 | size 108215 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50eb71a0062f771d0e8c8d1e1c2c978776920b0efc0a7d6d1733767716576f5c 3 | size 297790 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6592e6584bb5972e11d3d6344f31b9618619534e8fc151ca28be0a5cacd68f55 3 | size 108222 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b90953d35b4643d2d2a07215e510db0de47fe050962199a6fa52a2bed6f22663 3 | size 297790 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2165320f76c846f6b6267fc035e80687523aea5b9bf98f1a0be45f3eced12773 3 | size 94535 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1416c09126194df3497a328a352d97b07d0807f6be84e90de00a32f7579f8e79 3 | size 213502 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd6bed09be5f83f5df1208be19bdd5e24a39e2291d5662e5c5439ab3bc801a37 3 | size 94543 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:120a30b388262abc884fd682eb23c759bf089588026af5786bc72ee3cb0fb336 3 | size 213502 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9eb034bf55ba26d198c0bf2bb6dfc5469963f68e745f928448dd9c1fbb5d9ff 3 | size 94536 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1178983dfbb8f102e6671820c7e768df420b23418eaeda10d23152accc0c0e0f 3 | size 213803 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c958f3767492cc5e262ba0f29c8e19f4d0dc418c1122c9c326fd65e63a529d99 3 | size 94544 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_index_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d9878387d8befb607d21d2423c56fd069651317f5a6f94ce7fe797c359334f2 3 | size 213803 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_lowerarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0ca64049ddaa861b380bed36391243d3593aa3e9bae2d71305de0901a0dd1c4 3 | size 190231 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_lowerarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b15d2c7eac88cda54898beab312194526a673ddd76b337026167cee88300fc43 3 | size 803651 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_lowerarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09e86d7070b525d9b597e804c38bb9f7c9ccfd88c07687591d904dc418d0be3f 3 | size 190164 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_lowerarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb7d64e853d7da40bb1d8c0e7274f8713a5d370384efce4592e8a94bf9645e89 3 | size 803651 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:353a3c1b033e58078ccd56d1afd900aa52e1de1d6358fb447830470b8e49bf86 3 | size 108244 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:330065c7d2aaab265709b2a465d7577b8d627526d2be42f3d34842ec29530493 3 | size 297801 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:314838ef4f9defc8c36ea9cab5c44224c0fe6215488db5e9a49ce6c226d14eda 3 | size 108229 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:910626e85a5a09ca0f3ca8802af4ba997133cbc4e93bfda903390799916897ba 3 | size 298102 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccfea6a05566236f7b3caf34886cee9559826006aeed252593f3bcbab2d9065d 3 | size 94538 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d7af5f2e722be6cfbe8044eed086f6039f1a30ce442f2dd21a4977fa6686a3c 3 | size 214113 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:328ab9f4af374dfe90212acb4a90ae86722bcf139303013eb061df98997fdd7a 3 | size 94544 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d70e3ed19b1a846f5f3ea87ccdbb3382810a4f37e8d47e436b6e640853163ce1 3 | size 214113 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9346638abf8745c21cd64da74927339e861263b1161ae79cb43f41d4c3a2bd07 3 | size 94541 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:081ccc6d5fa8844f671aa39f2bd5118e35b43527ec83db14757224ebd8b3b5a6 3 | size 213812 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79173bad000a7cd3f10426dcdabb5ac48e1174987840947cb03ff8b12449734a 3 | size 94551 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_middle_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:040b0feb6b1c824ceb53686c3af582b2b449e99cb2a772698d8a87a4f277b761 3 | size 213812 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3a771a3cf30b284449dfd7f723686fe76b5a7485cccc70ec831f49bc5907145 3 | size 108268 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96e9b275203014da8d59d1d4cd63b2df4b22bc28f9df97e0be232a09b4c17217 3 | size 297790 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c9d54ed2f78f9d7f6425740eb04d2e8da1d51e70d3262b510838b05a8a24fe4 3 | size 108257 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:715ba87445cb5587dad65efe9d5a1b9b6e390740fb27bd7748a9c024790bd6b0 3 | size 297790 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7406e1a3e82355df37194374d23a74e9118725adc60d85023a041f0d159eb777 3 | size 94536 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d9679c2227e5a01f1c917cb8fb7a0d66ced690796b9fdc05d935244b0c607b7 3 | size 213502 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22a4a2d8523ceb92b241c5d3c85fd7b45a7ad42f6daabf758a26bf62b473bc46 3 | size 94451 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4adcd5653765b57c84c89a6f6f83db2a2c8b67c30f1dd2f3ed54e35179d5d53 3 | size 213502 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3610889e718be04768755b7164687d9fb794dfab68782004d09861a28333217b 3 | size 94536 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72d84240343444c6e2ac12f83fef09f61b613d1067d953684c0e62fec3296c19 3 | size 213502 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94cdfa3112a86911d3dade62d8abf6a8e8f3ee42cd673376607b0a56e0a0fc7a 3 | size 94538 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_pinky_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17f758aef552a8aad66e6bbadacbcf0545a17db3e8f771349fedaddd9312e364 3 | size 213803 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee1a50354233567b0fc28ac2df8a9be1fd95769add3abe4db5d6fb42bfafed8b 3 | size 108214 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb68c60717da3c475f3d27db81aa9f6ac28ae7a9b516d2160b1a85a7e4923017 3 | size 297480 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26735a204fa6ced6d574d07c13f34ddfd00c07929c24f8de3422966e85a989f7 3 | size 108219 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e44b34fe8c6a0b0fb00234be46bdb808538bd443eac50259343232cfa1ddbdf 3 | size 297480 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3e572ad114eefd30f2e166b1c18033abcf006561e303a8f3930e1a0c6463339 3 | size 94531 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4845285574bc81284541f2d797cb73ee430aac6b9747515937d0a661c56c28c9 3 | size 213796 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e57b62bd13f95d0f33d1ce2f4a15000fd5a14fcae37f0b02be3b4053de95eda1 3 | size 94533 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27629cb5bc6efb146ef782e698e3408609f597f511bb3b90e6bc951490d46c8e 3 | size 213796 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60a0986aefb4f88ee2b22fba1e9ae449cb119775e9552cc34912eea7c6b27e01 3 | size 94532 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4c60c15048958fbe7ca26ab055e5f41e7baf7cae0c9322eeb7390651c030e49 3 | size 213194 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed47199ba235dee3cd9d3bc2e0503cb2ac9a3c283fc11480ef44b76496b55e20 3 | size 94532 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_ring_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24efad33770e2c7870ca923447f68957961320a18df33c405f9041573dd53764 3 | size 213194 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thigh_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea7e5faed5f29cc066baa0a125cf825ea9825cfe5d77fadb3d16384a15aa66b0 3 | size 1238822 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thigh_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5be43a27aa10a24eaba06665d302493545ba3646f6ab311a8cdb396ab7bbf423 3 | size 1238822 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_01_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:683d76519fea6f7575726b631bae1ce455736ffa8eba6af756384c1e8ab16f91 3 | size 94529 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_01_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94e440d9290fd7518b48c115add8fb513656523c05dcffe809cd7674d7e0f449 3 | size 211999 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_01_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e210e8675f1916f380c3491b1c1049ba15ff771f51bf5e7730a36adc1a7c013f 3 | size 94537 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_01_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9591581b9b2fc95944c98ed1fe6e2aa0fc4b4f8a8a28935cb891c9e79bf7efbd 3 | size 211999 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_02_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b923a9454b53c81b995194634aedecf23ad6c73442c4e712ecfeca45be6c140 3 | size 94534 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_02_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:980c535c4a4e5443d9e110d446379e4fa9d91565053368bd89a324275088c025 3 | size 212300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_02_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db4fd98110afa160324bbf4924d34a05259acd94a7d8e6349cb1e9c0576da140 3 | size 94539 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_02_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b586cdb3d9d2046af9649c800036f95e2159b5674965f189afa0f7953e3d5651 3 | size 212300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_03_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c650fbec22a8a80c738e8e19fca60b4d9896ae5fd8956a8d034f05b28e08f0bb 3 | size 94532 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_03_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68226afb16971639005616cbb0af9aee3b51b994f33df9185fca1adecbeb4a41 3 | size 212300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_03_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c06360ddef7122884a8e707618f8b30891b9a304d23f17554e088782fe749a9a 3 | size 94533 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_thumb_03_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:702ca96687fac9551f9b01562c91bdbe5939052c731a88192edb7c014b08fca5 3 | size 212300 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_upperarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45de7dbdba8fbf46b6e1c27965ddf259659301a84a78570228d21eb840731529 3 | size 244888 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_upperarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10e7d04d6d19fafa5b0bef6f7b0c30078a5fcb80ac477d7b7c8a6fcbc3652f33 3 | size 1146523 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_upperarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5327d5b5e661f55e012180924d5469ca2e3c1a079eb76ce6bf5ecf2e016f00d 3 | size 244876 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Tall/UnderWeight/Poses/f_tal_unw_upperarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75a33d04e73077117451ed0953ebf0923027be46337c84beb5a9b3a0d6a006a7 3 | size 1151339 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Textures/Shared/8K/female_underwear_color_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b172314111565c29b30b51baf787ab0c3d8930a746b07ecac328430f22c633c6 3 | size 12733247 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Textures/female_002/8K/female_body_cavity_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:874fcf3f5a0fe69a354af02069d3ac1c657c52c46f01927c96944e9cc3380cc1 3 | size 67846082 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Textures/female_002/8K/female_body_normal_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec92d61f8a116b60538e4ddcda4593ad50a11c25b98c51f6fc0a28cde8a24ecf 3 | size 78768483 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Female/Textures/female_002/8K/female_body_roughness_map.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b243b276e44028084d94b109b54b11647580c9664b8d0b26dae53a4aa75cd46 3 | size 13166 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/FemaleHair/Textures/Hair_S_Updo/Hair_S_Updo_Attribute.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b15f5d3469e16a992b48009b3a8d4f8a277a951fd9e222d7f82c981c9c9e554 3 | size 3659929 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/FemaleHair/Textures/Hair_S_Updo/Hair_S_Updo_Material.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2676a8b578197cfe1cb15e4a260a81558ca4939a5297931f28648bcdc750980b 3 | size 2948321 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/DefaultMaps/color_spectrum.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa36e8863319f751b800bc324dd3d87ab98e4c99c5de37707be5c14d1f52d110 3 | size 94364 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_fuzz_Normal.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a4cae3c62858a6b2f80205314d898d0e06cd8028142d27f6a6f8053aa9df8a5 3 | size 44893477 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Macros/macro_pilling_2_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1a4e4653cbe987cfc30cb1d6eaa9671acdef1ec9fc0ab322642f4b750f8e358 3 | size 2960286 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Micros/micro_double_knit_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a73f955a1b581b3d0ee57903a8ff0142108eaf66649b34b22f84a51a784f4464 3 | size 2097037 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Micros/micro_knit_front_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a556af2db3de9058ee97b5a7525fc55c03df304bc89b272b9f81783482211d7c 3 | size 924099 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Micros/micro_knit_front_H.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20c14a689f430f47ef9dc3d3bb2135c066ecfc484d9b5a20d1ba55e4a8ad347c 3 | size 829469 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Micros/micro_knit_front_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c20b33570bd45e8a027a9bfdc3140cb410106879232e79ce9145c34bc104e40 3 | size 6819071 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/Micros/micro_weave_denim_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c85479893a8b8bbd15ead80b413c60bb33d8750a65034a1606d25d853ae1a8c 3 | size 3331821 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Textures/Clothing/upresTest/MF_NormalStrength.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f21edd456e6ff3612f1a335c80f866da574ad84d44b6419470af8514c54113a9 3 | size 9904 4 | -------------------------------------------------------------------------------- /Content/Holographic_AI_Framework/MetaHumans/Common/Materials/Yogapants/Textures/f_med_nrw_yogaful_slm_AO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7ca3b80c5b3c3ba2f295c68bee1afc13c75d5f7a604265e3b56343cdef13f2c 3 | size 3876613 4 | --------------------------------------------------------------------------------