├── .gitattributes ├── .gitignore ├── .gitmodules ├── Config ├── DefaultEditor.ini ├── DefaultEditorPerProjectUserSettings.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content ├── Characters │ ├── Mannequin_UE4 │ │ ├── Animations │ │ │ └── Jog_Fwd.uasset │ │ ├── Materials │ │ │ ├── Layers │ │ │ │ ├── ML_Latex_Black.uasset │ │ │ │ ├── ML_ShinyPlastic_Beige.uasset │ │ │ │ ├── ML_ShinyPlastic_Beige_Logo.uasset │ │ │ │ └── ML_SoftMetal.uasset │ │ │ ├── M_MannequinUE4_Body.uasset │ │ │ └── M_MannequinUE4_ChestLogo.uasset │ │ ├── Meshes │ │ │ ├── SK_Mannequin.uasset │ │ │ ├── SK_Mannequin_PhysicsAsset.uasset │ │ │ └── SK_Mannequin_Skeleton.uasset │ │ ├── Rigs │ │ │ ├── IK_UE4_Mannequin.uasset │ │ │ ├── RTG_UE4Manny_UE5Manny.uasset │ │ │ └── RTG_UE5Manny_UE4Manny.uasset │ │ └── Textures │ │ │ ├── T_ML_Aluminum01.uasset │ │ │ ├── T_ML_Aluminum01_N.uasset │ │ │ ├── T_ML_Rubber_Blue_01_D.uasset │ │ │ ├── T_ML_Rubber_Blue_01_N.uasset │ │ │ ├── T_UE4_Mannequin_MAT_MASKA.uasset │ │ │ ├── T_UE4_Mannequin__normals.uasset │ │ │ ├── T_UELogo_Mask.uasset │ │ │ └── T_UELogo_N_TGA.uasset │ └── Mannequins │ │ ├── Animations │ │ ├── ABP_Manny.uasset │ │ ├── ABP_Quinn.uasset │ │ ├── Manny │ │ │ ├── BS_MM_WalkRun.uasset │ │ │ ├── MM_Fall_Loop.uasset │ │ │ ├── MM_Idle.uasset │ │ │ ├── MM_Jump.uasset │ │ │ ├── MM_Land.uasset │ │ │ ├── MM_Run_Fwd.uasset │ │ │ ├── MM_T_Pose.uasset │ │ │ ├── MM_Walk_Fwd.uasset │ │ │ └── MM_Walk_InPlace.uasset │ │ └── Quinn │ │ │ ├── BS_MF_Unarmed_WalkRun.uasset │ │ │ ├── MF_Idle.uasset │ │ │ ├── MF_Run_Fwd.uasset │ │ │ └── MF_Walk_Fwd.uasset │ │ ├── Materials │ │ ├── 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 │ │ └── M_Mannequin.uasset │ │ ├── Meshes │ │ ├── Mannequin_LODSettings.uasset │ │ ├── SKM_Manny.uasset │ │ ├── SKM_Manny_Simple.uasset │ │ ├── SKM_Quinn.uasset │ │ ├── SKM_Quinn_Simple.uasset │ │ └── SK_Mannequin.uasset │ │ ├── Rigs │ │ ├── ABP_Manny_PostProcess.uasset │ │ ├── ABP_Quinn_PostProcess.uasset │ │ ├── CR_Mannequin_BasicFootIK.uasset │ │ ├── CR_Mannequin_Body.uasset │ │ ├── CR_Mannequin_Procedural.uasset │ │ ├── IK_Mannequin.uasset │ │ ├── PA_Mannequin.uasset │ │ ├── Poses │ │ │ ├── Manny │ │ │ │ ├── Manny_calf_l_anim.uasset │ │ │ │ ├── Manny_calf_l_pose.uasset │ │ │ │ ├── Manny_calf_r_anim.uasset │ │ │ │ ├── Manny_calf_r_pose.uasset │ │ │ │ ├── Manny_clavicle_l_anim.uasset │ │ │ │ ├── Manny_clavicle_l_pose.uasset │ │ │ │ ├── Manny_clavicle_r_anim.uasset │ │ │ │ ├── Manny_clavicle_r_pose.uasset │ │ │ │ ├── Manny_foot_l_anim.uasset │ │ │ │ ├── Manny_foot_l_pose.uasset │ │ │ │ ├── Manny_foot_r_anim.uasset │ │ │ │ ├── Manny_foot_r_pose.uasset │ │ │ │ ├── Manny_hand_l_anim.uasset │ │ │ │ ├── Manny_hand_l_pose.uasset │ │ │ │ ├── Manny_hand_r_anim.uasset │ │ │ │ ├── Manny_hand_r_pose.uasset │ │ │ │ ├── Manny_lowerarm_l_anim.uasset │ │ │ │ ├── Manny_lowerarm_l_pose.uasset │ │ │ │ ├── Manny_lowerarm_r_anim.uasset │ │ │ │ ├── Manny_lowerarm_r_pose.uasset │ │ │ │ ├── Manny_thigh_l_anim.uasset │ │ │ │ ├── Manny_thigh_l_pose.uasset │ │ │ │ ├── Manny_thigh_r_anim.uasset │ │ │ │ ├── Manny_thigh_r_pose.uasset │ │ │ │ ├── Manny_upperarm_l_anim.uasset │ │ │ │ ├── Manny_upperarm_l_pose.uasset │ │ │ │ ├── Manny_upperarm_r_anim.uasset │ │ │ │ └── Manny_upperarm_r_pose.uasset │ │ │ └── Quinn │ │ │ │ ├── Quinn_calf_l_anim.uasset │ │ │ │ ├── Quinn_calf_l_pose.uasset │ │ │ │ ├── Quinn_calf_r_anim.uasset │ │ │ │ ├── Quinn_calf_r_pose.uasset │ │ │ │ ├── Quinn_clavicle_l_anim.uasset │ │ │ │ ├── Quinn_clavicle_l_pose.uasset │ │ │ │ ├── Quinn_clavicle_r_anim.uasset │ │ │ │ ├── Quinn_clavicle_r_pose.uasset │ │ │ │ ├── Quinn_foot_l_anim.uasset │ │ │ │ ├── Quinn_foot_l_pose.uasset │ │ │ │ ├── Quinn_foot_r_anim.uasset │ │ │ │ ├── Quinn_foot_r_pose.uasset │ │ │ │ ├── Quinn_hand_l_anim.uasset │ │ │ │ ├── Quinn_hand_l_pose.uasset │ │ │ │ ├── Quinn_hand_r_anim.uasset │ │ │ │ ├── Quinn_hand_r_pose.uasset │ │ │ │ ├── Quinn_lowerarm_l_anim.uasset │ │ │ │ ├── Quinn_lowerarm_l_pose.uasset │ │ │ │ ├── Quinn_lowerarm_r_anim.uasset │ │ │ │ ├── Quinn_lowerarm_r_pose.uasset │ │ │ │ ├── Quinn_thigh_l_anim.uasset │ │ │ │ ├── Quinn_thigh_l_pose.uasset │ │ │ │ ├── Quinn_thigh_r_anim.uasset │ │ │ │ ├── Quinn_thigh_r_pose.uasset │ │ │ │ ├── Quinn_upperarm_l_anim.uasset │ │ │ │ ├── Quinn_upperarm_l_pose.uasset │ │ │ │ ├── Quinn_upperarm_r_anim.uasset │ │ │ │ └── Quinn_upperarm_r_pose.uasset │ │ └── RTG_Mannequin.uasset │ │ └── Textures │ │ ├── Manny │ │ ├── T_Manny_01_ASAOPMASK_MSK.uasset │ │ ├── T_Manny_01_BN.uasset │ │ ├── T_Manny_01_CCRCCPlastic_MSK.uasset │ │ ├── T_Manny_01_D.uasset │ │ ├── T_Manny_01_MSR_MSK.uasset │ │ ├── T_Manny_01_N.uasset │ │ ├── T_Manny_01_Tan.uasset │ │ ├── T_Manny_02_ASAOPMASK_MSK.uasset │ │ ├── T_Manny_02_BN.uasset │ │ ├── T_Manny_02_CCRCCPlastic_MSK.uasset │ │ ├── T_Manny_02_D.uasset │ │ ├── T_Manny_02_MSR_MSK.uasset │ │ ├── T_Manny_02_N.uasset │ │ └── T_Manny_02_Tan.uasset │ │ ├── Quinn │ │ ├── T_Quinn_01ID_BN.uasset │ │ ├── T_Quinn_01ID_D.uasset │ │ ├── T_Quinn_01ID_MSR_MSK.uasset │ │ ├── T_Quinn_01ID_N.uasset │ │ ├── T_Quinn_01ID_Tan.uasset │ │ ├── T_Quinn_01_ASAOMASK_MSK.uasset │ │ ├── T_Quinn_01_CCRCCPlastic_MSK.uasset │ │ ├── T_Quinn_02ID_BN.uasset │ │ ├── T_Quinn_02ID_D.uasset │ │ ├── T_Quinn_02ID_MSR_MSK.uasset │ │ ├── T_Quinn_02ID_N.uasset │ │ ├── T_Quinn_02ID_Tan.uasset │ │ ├── T_Quinn_02_ASAOMASK_MSK.uasset │ │ └── T_Quinn_02_CCRCCPlastic_MSK.uasset │ │ └── Shared │ │ └── T_UE_Logo_M.uasset ├── LevelPrototyping │ ├── Materials │ │ ├── MF_ProcGrid.uasset │ │ ├── MI_PrototypeGrid_Gray.uasset │ │ ├── MI_PrototypeGrid_Gray_02.uasset │ │ ├── MI_PrototypeGrid_TopDark.uasset │ │ ├── MI_Solid_Blue.uasset │ │ ├── M_PrototypeGrid.uasset │ │ └── M_Solid.uasset │ ├── Meshes │ │ ├── SM_ChamferCube.uasset │ │ ├── SM_Cube.uasset │ │ ├── SM_Cylinder.uasset │ │ ├── SM_QuarterCylinder.uasset │ │ └── SM_Ramp.uasset │ └── Textures │ │ └── T_GridChecker_A.uasset ├── ThirdPerson │ ├── Blueprints │ │ ├── BP_ThirdPersonCharacter.uasset │ │ ├── BP_ThirdPersonController.uasset │ │ ├── BP_ThirdPersonGameMode.uasset │ │ ├── W_PlayerHUD.uasset │ │ └── W_StaminaBar.uasset │ ├── Input │ │ ├── Actions │ │ │ ├── IA_Crouch.uasset │ │ │ ├── IA_Jump.uasset │ │ │ ├── IA_Look.uasset │ │ │ ├── IA_Move.uasset │ │ │ ├── IA_Prone.uasset │ │ │ ├── IA_Sprint.uasset │ │ │ └── IA_Strafe.uasset │ │ └── IMC_Default.uasset │ └── Maps │ │ ├── ThirdPersonMap.umap │ │ └── ThirdPersonMap_BuiltData.uasset ├── __ExternalActors__ │ └── ThirdPerson │ │ └── Maps │ │ └── ThirdPersonMap │ │ ├── 0 │ │ ├── 43 │ │ │ └── HYQWORMY4JDQ5X3OKZXFLC.uasset │ │ ├── FZ │ │ │ └── 4XWWUGWFDLX56REQRH8Z9W.uasset │ │ └── SX │ │ │ └── SKO7AH9HKZVPN4OMFO4DV3.uasset │ │ ├── 1 │ │ ├── 0G │ │ │ └── HOAJZN9E4DDI6Y1W3JU13K.uasset │ │ ├── 2J │ │ │ └── AQ1PWWT9TBAI7AA470T014.uasset │ │ ├── AZ │ │ │ └── A7GPT109Y6ZTTJD4A7TXER.uasset │ │ ├── EJ │ │ │ └── PGUWWHRTS59S34GKBX0OUI.uasset │ │ ├── HF │ │ │ └── YFYBQ72OYLHJQS0TSSXGBV.uasset │ │ ├── QS │ │ │ └── VHQF8JWOATZI5V3ZVY5YTM.uasset │ │ └── WU │ │ │ └── NB37RT5Q32Z8MJWD8BD2SO.uasset │ │ ├── 2 │ │ └── 66 │ │ │ └── 0OP5U85W4H0R7CHG999ZDN.uasset │ │ ├── 3 │ │ ├── 1V │ │ │ └── XSFYSB2EC9Z21RQOBXZLMO.uasset │ │ ├── B1 │ │ │ └── 9G3WNX7WIR7UKI26T9LK5O.uasset │ │ ├── HE │ │ │ └── U35NZS5A9W1UXP1E3FF2GW.uasset │ │ ├── OG │ │ │ └── KDQDMXAXZXD8VLDDU4K3JL.uasset │ │ └── P3 │ │ │ └── O43ETCZTFMLWWH1CJ941H2.uasset │ │ ├── 5 │ │ └── Q1 │ │ │ └── 5IZD4L3UPM3EEODZK67MH1.uasset │ │ ├── 6 │ │ ├── 0D │ │ │ └── 0WM78RPJCXHX477YOZXKQE.uasset │ │ ├── HF │ │ │ └── 9H7TKAXH9DD8KI3TIXGI2I.uasset │ │ ├── NC │ │ │ └── UUYHDUFQAXTRRN4RVOPIUF.uasset │ │ ├── NP │ │ │ └── Z9EK2TXQ1TFO26WFZHWZII.uasset │ │ └── UV │ │ │ └── 1C6W14EIHMXOXXB657JYKB.uasset │ │ ├── 8 │ │ ├── 7Y │ │ │ └── C94R5C0R01QSL2SVHUG3KD.uasset │ │ ├── H9 │ │ │ └── GITN2HJQNERMM41FAE68W0.uasset │ │ └── P1 │ │ │ └── NN84RP20JNUCL0SHI5W2B8.uasset │ │ ├── 9 │ │ ├── 21 │ │ │ └── WWYX44RDCCS98492P9K9O3.uasset │ │ ├── 6I │ │ │ └── RU1L28PS820IOVH625A0DA.uasset │ │ ├── CI │ │ │ └── KST702KSCRZWYV56G3VJBD.uasset │ │ └── MO │ │ │ └── 72II2GSLK9VS0ULW9SACWH.uasset │ │ ├── A │ │ ├── BW │ │ │ └── M7Z5RX3O7568TBJFK5R76I.uasset │ │ └── IO │ │ │ └── 07IVU4EY14FMETPGTJULEO.uasset │ │ ├── B │ │ ├── CJ │ │ │ └── ZQ5BFL59YGMQUT9ZD7CAHJ.uasset │ │ └── KW │ │ │ └── 9YH18EUCJFK5CZXL6H3W3R.uasset │ │ ├── C │ │ └── 0I │ │ │ └── VIQQWOEJKSKV1EK1XGX3EY.uasset │ │ ├── D │ │ ├── DE │ │ │ └── SWSI13675DVYIZ0N4NF7Y3.uasset │ │ ├── MM │ │ │ └── 5416TNIX8GKJW3B714Y6WF.uasset │ │ ├── OI │ │ │ └── BVNTLHAPOPDXURSVGR63ME.uasset │ │ ├── SY │ │ │ └── Z4CTQ4LG3YV10EKPD0UE8Q.uasset │ │ └── VL │ │ │ └── KUT2U1MQ1ND9CXN070OTDM.uasset │ │ └── E │ │ ├── FR │ │ └── LBG6LPN5JCL3FMVSI2CK6R.uasset │ │ └── T8 │ │ └── 46ZIBNTTDDR3AOR2XC9VO6.uasset └── __ExternalObjects__ │ └── ThirdPerson │ └── Maps │ └── ThirdPersonMap │ ├── 3 │ └── DH │ │ └── JQTP3L9HHXRN8IUHATI906.uasset │ ├── 4 │ └── 4A │ │ └── NCNZF2U4ZTZ8XZJNF86FNT.uasset │ ├── 8 │ └── 05 │ │ └── U8OLLG133BEQMR58UPHM3P.uasset │ ├── A │ └── KP │ │ └── VZTB4WP3P1L1F1WL9R6XLZ.uasset │ ├── B │ └── AN │ │ └── 0Z4D0BFPHEXAYK76DY0WLL.uasset │ └── D │ └── 13 │ └── KQB15WT334LUGWVAUX80XH.uasset ├── LICENSE ├── PredictedExample.uproject ├── README.md └── Source ├── PredictedExample.Target.cs ├── PredictedExample ├── PredictedExample.Build.cs ├── PredictedExample.cpp ├── PredictedExample.h ├── PredictedExampleCharacter.cpp ├── PredictedExampleCharacter.h ├── PredictedExampleCharacterMovement.cpp ├── PredictedExampleCharacterMovement.h ├── PredictedExampleGameMode.cpp └── PredictedExampleGameMode.h └── PredictedExampleEditor.Target.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | *.tif filter=lfs diff=lfs merge=lfs -text 2 | *.cubemap filter=lfs diff=lfs merge=lfs -text 3 | *.tga filter=lfs diff=lfs merge=lfs -text 4 | *.png filter=lfs diff=lfs merge=lfs -text 5 | *.raw filter=lfs diff=lfs merge=lfs -text 6 | *.wav filter=lfs diff=lfs merge=lfs -text 7 | *.psd filter=lfs diff=lfs merge=lfs -text 8 | *.mov filter=lfs diff=lfs merge=lfs -text 9 | *.mb filter=lfs diff=lfs merge=lfs -text 10 | *.duf filter=lfs diff=lfs merge=lfs -text 11 | *.jpg filter=lfs diff=lfs merge=lfs -text 12 | *.hdr filter=lfs diff=lfs merge=lfs -text 13 | *.bin.fbx filter=lfs diff=lfs merge=lfs -text 14 | 15 | *.uasset filter=lfs diff=lfs merge=lfs -text 16 | *.umap filter=lfs diff=lfs merge=lfs -text 17 | *.upk filter=lfs diff=lfs merge=lfs -text 18 | *.udk filter=lfs diff=lfs merge=lfs -text 19 | *.sh text eol=lf 20 | 21 | *.dll filter=lfs diff=lfs merge=lfs -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | DerivedDataCache 2 | Saved 3 | Script 4 | Intermediate 5 | Binaries 6 | .idea 7 | .vs 8 | *.sln 9 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Plugins/PredictedMovement"] 2 | path = Plugins/PredictedMovement 3 | url = https://github.com/Vaei/PredictedMovement.git 4 | branch = link 5 | -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | [UnrealEd.SimpleMap] 2 | SimpleMapName=/Game/ThirdPersonCPP/Maps/ThirdPersonExampleMap 3 | 4 | [EditoronlyBP] 5 | bAllowClassAndBlueprintPinMatching=true 6 | bReplaceBlueprintWithClass= true 7 | bDontLoadBlueprintOutsideEditor= true 8 | bBlueprintIsNotBlueprintType= true 9 | 10 | -------------------------------------------------------------------------------- /Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- 1 | [ContentBrowser] 2 | ContentBrowserTab1.SelectedPaths=/Game/ThirdPersonCPP -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- 1 | [/Script/EngineSettings.GameMapsSettings] 2 | GameDefaultMap=/Game/ThirdPerson/Maps/ThirdPersonMap.ThirdPersonMap 3 | EditorStartupMap=/Game/ThirdPerson/Maps/ThirdPersonMap.ThirdPersonMap 4 | GlobalDefaultGameMode="/Script/PredictedExample.PredictedExampleGameMode" 5 | 6 | [/Script/Engine.RendererSettings] 7 | r.ReflectionMethod=1 8 | r.GenerateMeshDistanceFields=True 9 | r.DynamicGlobalIlluminationMethod=1 10 | r.Lumen.TraceMeshSDFs=0 11 | r.Shadow.Virtual.Enable=1 12 | r.Mobile.EnableNoPrecomputedLightingCSMShader=1 13 | r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True 14 | r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=true 15 | 16 | [/Script/WindowsTargetPlatform.WindowsTargetSettings] 17 | DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 18 | -D3D12TargetedShaderFormats=PCD3D_SM5 19 | +D3D12TargetedShaderFormats=PCD3D_SM6 20 | -D3D11TargetedShaderFormats=PCD3D_SM5 21 | +D3D11TargetedShaderFormats=PCD3D_SM5 22 | Compiler=Default 23 | AudioSampleRate=48000 24 | AudioCallbackBufferFrameSize=1024 25 | AudioNumBuffersToEnqueue=1 26 | AudioMaxChannels=0 27 | AudioNumSourceWorkers=4 28 | SpatializationPlugin= 29 | SourceDataOverridePlugin= 30 | ReverbPlugin= 31 | OcclusionPlugin= 32 | CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0) 33 | CacheSizeKB=65536 34 | MaxChunkSizeOverrideKB=0 35 | bResampleForDevice=False 36 | MaxSampleRate=48000.000000 37 | HighSampleRate=32000.000000 38 | MedSampleRate=24000.000000 39 | LowSampleRate=12000.000000 40 | MinSampleRate=8000.000000 41 | CompressionQualityModifier=1.000000 42 | AutoStreamingThreshold=0.000000 43 | SoundCueCookQualityIndex=-1 44 | 45 | [/Script/HardwareTargeting.HardwareTargetingSettings] 46 | TargetedHardwareClass=Desktop 47 | AppliedTargetedHardwareClass=Desktop 48 | DefaultGraphicsPerformance=Maximum 49 | AppliedDefaultGraphicsPerformance=Maximum 50 | 51 | [/Script/Engine.Engine] 52 | +ActiveGameNameRedirects=(OldGameName="TP_ThirdPerson",NewGameName="/Script/PredictedExample") 53 | +ActiveGameNameRedirects=(OldGameName="/Script/TP_ThirdPerson",NewGameName="/Script/PredictedExample") 54 | +ActiveClassRedirects=(OldClassName="TP_ThirdPersonGameMode",NewClassName="PredictedExampleGameMode") 55 | +ActiveClassRedirects=(OldClassName="TP_ThirdPersonCharacter",NewClassName="PredictedExampleCharacter") 56 | 57 | [/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings] 58 | bEnablePlugin=True 59 | bAllowNetworkConnection=True 60 | SecurityToken=047D9B34438C66888E07C69648D1CA36 61 | bIncludeInShipping=False 62 | bAllowExternalStartInShipping=False 63 | bCompileAFSProject=False 64 | bUseCompression=False 65 | bLogFiles=False 66 | bReportStats=False 67 | ConnectionType=USBOnly 68 | bUseManualIPAddress=False 69 | ManualIPAddress= 70 | 71 | -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- 1 | [/Script/EngineSettings.GeneralProjectSettings] 2 | ProjectID=1F5F7E794B82F45073A9DCA156818DB6 3 | ProjectName=Third Person Game Template 4 | -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | [/Script/Engine.InputSettings] 4 | -AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 5 | -AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 6 | -AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 7 | -AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 8 | -AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 9 | -AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 10 | -AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 11 | +AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 12 | +AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 13 | +AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 14 | +AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 15 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 16 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 17 | +AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 18 | +AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 19 | +AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 20 | +AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 21 | +AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 22 | +AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 23 | +AxisConfig=(AxisKeyName="Vive_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 24 | +AxisConfig=(AxisKeyName="Vive_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 25 | +AxisConfig=(AxisKeyName="Vive_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 26 | +AxisConfig=(AxisKeyName="Vive_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 27 | +AxisConfig=(AxisKeyName="Vive_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 28 | +AxisConfig=(AxisKeyName="Vive_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 29 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 30 | +AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 31 | +AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 32 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 33 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 34 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 35 | +AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 36 | +AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 37 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 38 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 39 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 40 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 41 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 42 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 43 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 44 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 45 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 46 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 47 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 48 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 49 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 50 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 51 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 52 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 53 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 54 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 55 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 56 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 57 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 58 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 59 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 60 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 61 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 62 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 63 | bAltEnterTogglesFullscreen=True 64 | bF11TogglesFullscreen=True 65 | bUseMouseForTouch=False 66 | bEnableMouseSmoothing=True 67 | bEnableFOVScaling=True 68 | bCaptureMouseOnLaunch=True 69 | bEnableLegacyInputScales=True 70 | bEnableMotionControls=True 71 | bFilterInputByPlatformUser=False 72 | bShouldFlushPressedKeysOnViewportFocusLost=True 73 | bAlwaysShowTouchInterface=False 74 | bShowConsoleOnFourFingerTap=True 75 | bEnableGestureRecognizer=False 76 | bUseAutocorrect=False 77 | DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown 78 | DefaultViewportMouseLockMode=LockOnCapture 79 | FOVScale=0.011110 80 | DoubleClickTime=0.200000 81 | DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput 82 | DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent 83 | DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks 84 | -ConsoleKeys=Tilde 85 | +ConsoleKeys=Tilde 86 | 87 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Animations/Jog_Fwd.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81b4dd2a00331ba3086ce06a8673667359183399c5fb1ab924060e2c84720691 3 | size 203111 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/Layers/ML_Latex_Black.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa87ecdbb722402bdb4decef1a53487d6b74789076cb7aa51a4521553f478a89 3 | size 13710 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b544f3c62bdc242ceb673eb94a30a1bb881ea3b126d849e8e969ea6b30c25772 3 | size 10382 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige_Logo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff2747888cb753414087d94c0aaa824e88aae93ca25584419a1ace2de31bb048 3 | size 11197 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/Layers/ML_SoftMetal.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28ffa6db34aa484d7f36d872c88b5628a5a9aff7279c1e0d819fb20fe29459ed 3 | size 14647 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_Body.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4042ac871e2df59386ec9b28ce4c8436753e92ba1e0c69b8ba1b75220a386e96 3 | size 28440 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_ChestLogo.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03e96660ce9ddd947d06b73332cc5e3ce76339f937d2cd7ef5396e20a1bdd968 3 | size 11162 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:add4a29562eefee1f38203b6377e56cdb62ad5f109776e845d05e4050552926c 3 | size 5583495 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_PhysicsAsset.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8e0bf4f4a7a8702be683d64e382e0994d56a24f6ef94a0e13d0d3504df9e490 3 | size 46446 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_Skeleton.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44ad784e4e3635f78abc34c3f266522218994b20714ddda144bbcbaa5972c4ed 3 | size 22962 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Rigs/IK_UE4_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce8694572ad9b6bf3f7b4bfb00f12aba5d5253d65389475ebcc8f9d8d43c37b2 3 | size 68924 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Rigs/RTG_UE4Manny_UE5Manny.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:592717cabe08dd57e5ee625c860879be13a18932f8654fe73ee0bbaee063caf6 3 | size 23985 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Rigs/RTG_UE5Manny_UE4Manny.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b34deb079185dedefe04151a3c824a6981b25e12c65f89e7bcd120c68d0f7cac 3 | size 19357 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf805e02f583024a7f5a40f4b2a249809ce711a46de5c84bcd74609b73fed351 3 | size 395400 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:582564da5dbbe8e30e6d65babae05ff22edce4a0bc8833f95180b505f0837447 3 | size 404289 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64a3293fbe4df89c9040bc8d5e9cc6cebc945715ca1c8dc62a7682acc526a524 3 | size 429026 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c84157238dd3d148b4f51e44a46f82d5dfd714beaa67c4c9c2998bdc7ec3365 3 | size 358524 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin_MAT_MASKA.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec1d27963fc08f75eeee585f78d96ffbd8727bfe86c7c1fe0e7e2a2dd57d5a26 3 | size 211489 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin__normals.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:354c99110df3d84a5cf4bb01de49d994a5c674c9788bd4b5fc779bf3030c54cf 3 | size 5427488 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_UELogo_Mask.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6f7d178353537343355bd9e8021951aac860c189c1393f57777df90c720466a 3 | size 41868 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequin_UE4/Textures/T_UELogo_N_TGA.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a30f20159eb0e91b89c5f36aa9e6699b4c1a2af7328296c3fd77c392e10b2c7 3 | size 56343 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/ABP_Manny.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:698ad59b091eadff740a7ed78bb18cfad875fa3143d2ae614e0317d5e9680a79 3 | size 368180 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/ABP_Quinn.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd84317778ba8ee13b7addf2bd11988a07c38cffbebb129562a25785e5215abb 3 | size 39313 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/BS_MM_WalkRun.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17534cfadb0ecbfec9556f6b116d3cc4276b2d8ea5b451062ba3919c5ce24a6c 3 | size 8993 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Fall_Loop.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:732b4cb73137a34d510f774b0ab63934bf2ee5532b0333d401fa450f88e44010 3 | size 698209 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Idle.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d03e57ab6829b8f60cf19ba1ee5e0ac82e37e5429427edaad472fb473f71d1c 3 | size 897634 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Jump.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:771ad470861e3bec955b22c889d2b9acb844a6ae91565b0e647c7adace39878b 3 | size 290962 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Land.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24f34cf736992c09b7502185c3d71ef1c79278fb558dacc91fa494ecfe452fe5 3 | size 300335 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Run_Fwd.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aff51ddb72b98d9cd2f4c1351f132dfcfde83d905f4f37d1f35b793b26c95b96 3 | size 293237 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_T_Pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b7e4d1ff30352e296f446e77eed841ad7d5344430c5f7141fd09aad7e0af2c3 3 | size 30458 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Walk_Fwd.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:226e6affa1682ddf630a2e7759bc8b08dae033490a0449400af18a97941440c4 3 | size 382783 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Manny/MM_Walk_InPlace.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55a005cf4d673d8fcef1b93e2be270b8c47a8a82b7cbf895a915d27710d4a40b 3 | size 609238 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Quinn/BS_MF_Unarmed_WalkRun.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6974eb2d3d4f246d91f0cfea6b4400aed38c722b67dc9ca8c15c9bc4a14e193 3 | size 9025 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Quinn/MF_Idle.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98c6ee27d23ad13b69cd51e466058ff8f75e55ec69ab78911d43eb2d54151022 3 | size 919278 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Quinn/MF_Run_Fwd.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:069b7d70641be0a4f2c0d9f0cb4662c796da0f2969c6f1297ae3e22dd3479026 3 | size 431040 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Animations/Quinn/MF_Walk_Fwd.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a277d4a34033b8e5b336eace9857a4abf1f255a2a4687fa1709b5a5a464ea137 3 | size 449906 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Functions/CA_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5564d59ac367f94d06d6eafc8eafbc1144eec525ebcaf0bd20c3effd400bcf8b 3 | size 4812 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Functions/ChromaticCurve.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32f26545999f01c55f8900c2d491d4cb39f3c545b061225deee2c8b70e760b70 3 | size 6306 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Functions/MF_Diffraction.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1248c9176bcd4693cab74b63249bd9f0434758dda1c4f4b5c53da5e2a2b91ec2 3 | size 32183 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Functions/MF_logo3layers.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1f542fd354f8ff82fb685318e3665da4e9a9207add267de9ce6cf8779b5e147 3 | size 56603 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Functions/ML_BaseColorFallOff.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:242a332a47b300d429e94147a7ffd38ed09b5c2467dede5e90525494af7c5e18 3 | size 13437 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2492fbdc6d6af64af264159aeab1b4ed6fc859e2adbd1be4aef59dd8221c7d49 3 | size 21590 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e6b0c28b5f10768f406776c4fc9d853eb915efdcff8e79465e96aff8c11872b 3 | size 24853 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_01.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc66db2c2b3f8f37191aad8bc59bbdecda0a19a03a995c602df3b2d8cb3f19e9 3 | size 19667 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_02.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46e73fecdb44bdf4bbbd661ee36798f7956f76360594023cb51b96f92ca4c01c 3 | size 25230 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Materials/M_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c19c44d3a63f9975bb2e777d37d44341cf24907674c36cca79c558383406f0d5 3 | size 83079 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/Mannequin_LODSettings.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae6203ccee7839e886951796d05315fe1dd9b9aa44c8a60a9525d5ccd905d5b6 3 | size 18996 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/SKM_Manny.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1df1a6b3db170cd80f14c40653fbc9a692af00f7abd575872d9cd8a707e05c6 3 | size 34534883 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/SKM_Manny_Simple.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc39b456f2700d3f7aa0dfa99432424c78464b723a143bdf337dcc96867aaab9 3 | size 18527372 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/SKM_Quinn.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0fdd468262ff66fd30eb55f7bac167063959e5d9dbfa36abf853a5d77616a59 3 | size 36495654 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/SKM_Quinn_Simple.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01031c54550174f0a09f13787b128229316afa699302577044e13b6c71d830ed 3 | size 19371553 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Meshes/SK_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:777b2aa0a679b5d326814440204787ff0ba56b4ad9477a407b24d689155b050c 3 | size 160872 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/ABP_Manny_PostProcess.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f58d1ac6047ec45bf31bec1071a5afc0e9dde9d50849bd8e74ca1c4271495c8 3 | size 463451 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/ABP_Quinn_PostProcess.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f57ba4350e61b3a5fac6cff45c3d21b81d0ab289765dac797b150b8bac98f34 3 | size 463249 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/CR_Mannequin_BasicFootIK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:968ba2fa8bf2bca36556b5623b895b9ac9db162f9c2936acda0b0504239543b4 3 | size 580522 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/CR_Mannequin_Body.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ed3164b01c005e3d62904d3fc60879eca9fcba0a00829a95637e077b6bd3f8d 3 | size 13893595 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/CR_Mannequin_Procedural.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d1abd304377e26c3c7e5a3b7488c522b118cc62ba0f574e9a63ec2e6ca22ac6 3 | size 2267523 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/IK_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edd623de3bde5afa06348d226eb98ba4f7d66c962ad7c93b4d25feef5de4b124 3 | size 143479 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/PA_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0b163ae42f4717b12d4a9ab0c6b9da218e2d0d64e891b508e81586ac2a3adee 3 | size 289285 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec42316c0d0e642867721ab1ac8b58452ee537c9dde5e4d4389d745ccc44e9a6 3 | size 141452 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26f5c00f4b1a7000505a233e217aa55c5e32b0473128b7cb96f34051dc330da5 3 | size 207430 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afe97fa82d46c150d56573b1d1c3d59fbac288f498c3de5fecedd8ac64c2263a 3 | size 141462 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fb5783ac00efbfb039007568246d1ac33d36da09eec69e3cf0d01e1f96d13fe 3 | size 207430 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b4292d4d3cc8c3a23c0d2ea80461f9c05379a22e97c94094a1c4e342e6f0fa9 3 | size 141484 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56c0e188c3d854c92956755b9c89b8cb6cdb75f1bc4aac655f0d5f6524fb8160 3 | size 205732 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9263821d96862a7121442b54bcaff72775c4758fb2218747bd3540207aa0fecd 3 | size 141486 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20d21639ca1cd7876ba408a4e6603f66d3d4c9a65d2bbf7c76b59f28e4d020e3 3 | size 206334 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5d2ef5f757409ad457660e4388272646155d5bcdfecc4705b85b41d338835c6 3 | size 129460 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b0c29406e6b6a8074edb2b2d1107d62972059ccae5c0bfe3dc6d99d932f00ed 3 | size 132176 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f872db9323bc78b01d91dea5e406cfa348ef10aeed5b9e66a97ddc87b58704e 3 | size 129462 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0313dfda857c8a37ae26a104bee21803eb49acc138a18fd7a6864320d025ef40 3 | size 132176 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ad7d36e92954cf783be7be2c7ce8e2e6b3b4376645985a6a772b5890977c381 3 | size 135460 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1d40437f02274fec5ff3cad47fa3e1cb2997db9397507823c299f0749e1c5f0 3 | size 169206 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e52609e89b719e493df4ed2a196996db3c4dfff4b20a83f68a747099f31827c9 3 | size 135462 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9b7b4ce565d7c55919dfeea6b785e2704cba7cc2ca8ad786145739a7eac36bc 3 | size 169206 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1761fa57b6504be33ac4c346839446698f20fcc8942a36574ae579e99d6311b 3 | size 203916 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a75265541e206479aabe98ede22dad0ae72aedd9b43fa8c33741422f4c5ec38 3 | size 361644 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bad38ef33364282ad783d13ff05ac64235fbd94f735f7970aa690f302927139 3 | size 165486 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02a9cb1c077531f9bc0acd2f5868d25d42e7f1edaf21d29b0a89a67f277bb2d2 3 | size 361644 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46328ac897d55c35ed2c5f7d28443c963b6e4ed348adaf74980b1b7e64514975 3 | size 195468 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac1fba41bdc8d3832f26bee507b7f83d2e51051cae58ecbea0a1e73f3d1e8198 3 | size 557972 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b17348bde6d9bd17838698331f08c1babf8a120aab05553ddcbf658cef3d6caf 3 | size 195470 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3bd106c4cf63362f741611edf562149e7d928c4e12a5debac2a27265bc315775 3 | size 557972 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59995bd0fd055a0c29809abcec8ab593a4cfb517a8c52d09b56870ad46a6a431 3 | size 207486 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b56619a8bff783926b5bc17770f90ca5b6dae18cfce0cfde29c69db26df8c968 3 | size 641633 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55a49a9b5f1d55df4733f651d7110c677fff421e8ccf317a7b5604d46380df9c 3 | size 207488 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed2b9dab16c319539175975f14ed906f2e442ebb3705a0f1bfb932b8b2752eec 3 | size 630195 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:315c606d481e66842161f6d640843049c1bb8fad801817cdc01b5347459fe663 3 | size 190030 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ee7e7490da8bc5da27bee03d313475c546418b9aa15186cc1e342ac314d1599 3 | size 245188 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46a6c2f1c8b50afe1849072f062ead508a2f570682f1b21b2e85334776c5f315 3 | size 228099 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaf41bdfdbbcde2f668b07dd932baac1b5517312d04d75b77dce1e82272b31b4 3 | size 245269 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:def1eceb6484991a242bd5bd4bf2c9c1b857861ff5b981ee916a23d4db023b4b 3 | size 222063 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2225dbb5778c1529862086865e86272e574cc993ac0a48cb1c0cc28fafb27c1 3 | size 205936 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97a0673daaa10512b94608a6ff11d82914e0812760b75ea7e86c3b43c0b4c97b 3 | size 183734 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aba097887d167f4b9277338de16c7feb689882acb393b32a0ac176d27f62e2b8 3 | size 205980 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6995c1603c3553af502c2ef04f6fb685d9183f0668266c6562f16238e08f80fb 3 | size 171708 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98e401355f6f5bdba83fc2e84ecd9d7e5128f1d6f0c585f368b9d971da58273c 3 | size 132123 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91500b65453319b136c33e0b3edb161adf1030a5c3c30c8602390f1725af65b3 3 | size 171710 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4af5fd34572deb49a2335651c0a311e4db80ed2394c6c1ad633735fa1cf5e44 3 | size 132123 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b0b0e92c4297c40bf94f63ccebd938acc49fc4b1ce45f1680fa533c5ea923cc 3 | size 177708 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7c66da3c6a7b2801d9ada447fff4a2593a4b6054a178141f1eae26e21e4b3a7 3 | size 169153 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6128ed9b666f06dde9df5e3d647aff8994b07ad1b4b36fedf693726d63ce138 3 | size 158608 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:973ad5984394de84cfbe2dd3021f7f64f8c4c2e85b6573866382df76c0d9d2f3 3 | size 169153 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd03a972b3109a14840c924efe7d5f6b486ad3e7764773d33eacfb8032bea64 3 | size 194631 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:106aa8dc6d3493474f24e4d3240212c3c24428249d5f09f078c65d0372cc3d4d 3 | size 399529 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93be05fdf4241bdc152877416175f804bd2e1976d7588919192316bd7b21e936 3 | size 194633 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:610877f087e4e77eba703036159d4abc95b52a1f196b7a317da97963e7477455 3 | size 399529 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae59b67795d102845bd680e15d74a9b70688315a0ca489232f56cc9005de5597 3 | size 218614 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04d95febf97f6a4d406c53efc6551eb20b378c8a91fef18c151b92a8b3df1abb 3 | size 557618 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b808aa71712168bf1905b91a238f152347579523c2eeec52401b67bf6de6ad27 3 | size 218616 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76f65a5466dd4cd84abd48bef6245bb84930f7b8efff23807a88d4b23df3c1b3 3 | size 557618 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1de49cf76ee2b6e93936cad3a1ace2bb849e3cd84a24bb84e566abde3a035758 3 | size 206632 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d72952cdf9066cd84e1e5ea11cc2f6a754b0e79f8f037e1f2c8fc8c86ddb408f 3 | size 485440 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_anim.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1fd8bad84e7c6c45884137870261dc78789def4c72683b3775790722d1894d 3 | size 206634 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_pose.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee8b8e737a19894faf44176bcd5aca3405b3a1879eeea792ebdb0c534691cf1c 3 | size 488450 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Rigs/RTG_Mannequin.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:710754e06ca383f6333958aea11321463736f5ffe6b1f82dfcf79896e2a5228b 3 | size 23721 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac817a2d33aa0cd0a8695b9fba9a925a1c71cfbe6de32986a51e6acb1ca598c0 3 | size 3612605 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8036d465bf677ee48f2c45bb50911cbd085a3d5208959e0b70377bb8d9bc26a6 3 | size 18514168 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3502ef8e4e68f4968b52510cf1fbf2fc0ccc1eb8d7c1e1afeb350d650c2e8ab 3 | size 10271972 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc929bd4eb67ba8610069c601709062d142cca925eedc40c89a940037650b524 3 | size 5740376 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b54209191bfa9dc3c8e195661e0d7807a24f039a3010d54f04e984f63669881c 3 | size 11038184 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b90b6df5b96b505495be378ecb268a17640ba88b40cfe5b0fc764aac26a07c40 3 | size 7198251 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_01_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:251a25a1ac777fddadd2845c84edca5b4ce15b749e9f46d8169c001b9be9c4ea 3 | size 1357770 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51d2a2a0683e0c5654d4c5c724e8360c83e4ffe5181ae740872ca3fc0533e85a 3 | size 8341381 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0361a08e270d688814e73adf503937c3012771b0a939f839a06f7c6c8d5269c3 3 | size 21139527 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:651eac4091121b27a09f3b13110ec307e9bd815f9a6e573618d051c24387de46 3 | size 13144043 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42864bd62f0f0d9510453038ff284cc1c1fc09630af8da0cb496e0563a2ffacb 3 | size 9033544 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb66b07e8c8621bf361a9d18f97c668677e51164b5892c2577c94703531482e8 3 | size 13677610 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:790e9d4e061af061c727d118634801c4834b46e119dd1917ffe5d18f6601d53f 3 | size 7269335 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Manny/T_Manny_02_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:187e5fb0047bcc653c7a6e014c49e3d6582e955a3c034579cfb756c80b68dc53 3 | size 2153790 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:267382e5ca6dcb468e63545e09778b0e16dbd7652cb6d735b487cff1990e809f 3 | size 16108599 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:792f234ebadad1dc45153c9b1987326d3a4da485d88cf8b1234e3395f5165070 3 | size 4711156 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e765500d0458a2b4612541ae714281afc376b1d4758403017eb1ca6bc6892de9 3 | size 11656141 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8266e8da977f915cbd75329eb02feee571f92067ee749b45099c290519bf20b 3 | size 5217676 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57d9b50418e742ee22fc67783d9db3afb5027c3ef943753e4137742a692b4e01 3 | size 1104627 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5583b02c8b943d60f91f5d9bb59466c9fb1ab3aa811d599c54a20f2a19661b2 3 | size 5834834 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2134af63f2d5037e8fcab8e4f50593d62c731f4a8af43bdbd7c2613debea0cbb 3 | size 12399926 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_BN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa063b2ea5c44fbc95b17b6a6c093c39a6bbbee1082137c42cbf23b311c75cef 3 | size 19706883 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_D.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40f579c2a83087c90b7f36744a15798194e9ecbe7c6560d0da2903653ed17723 3 | size 6732524 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98195f96efbfcf97ddf05c69f2f04388a5e5aefa22d2c9d771f37b22aba8fc2a 3 | size 13169771 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_N.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:637241dcbbff574ea1032881f60ddb007ce4a33a61864c6b0d3b3b7aa392d0d9 3 | size 5217676 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_Tan.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcb445b1af4f07ce1b59ab3c8c25af3da7eb1f9c019559b0fd9172c31f38fa5f 3 | size 1758494 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53b15563df73f76b904d67eec1f7f7ad3c27166bdb1aa21d99c7f9eec0116d60 3 | size 6901973 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe4e287b727a2b1d18f26557d1569111eda715219f8c73bd96cb74ff87c2cb8c 3 | size 13427858 4 | -------------------------------------------------------------------------------- /Content/Characters/Mannequins/Textures/Shared/T_UE_Logo_M.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0571397248a1f4acc7607d1e53676cbb154e3c9c8a19d570915d76b70caaf99c 3 | size 69960 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_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/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/Materials/M_PrototypeGrid.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1a5b000cfbe3030ff6f0bb67a2e4cc4bb803769d74ebd88d54f98918616d2d1 3 | size 40328 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_ChamferCube.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6301fc4690ae3dbdc0b77203c6e5f662561351252c7df36c334fb72f6ffe2205 3 | size 22332 4 | -------------------------------------------------------------------------------- /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_Cylinder.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a59270c4e29b708c93c0872970bd7f8cc2a9db0e898ba6792605364b25fee585 3 | size 20348 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/LevelPrototyping/Meshes/SM_Ramp.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81a46d90c20408e4246e37c4c00bf764b5a05d3752eadd1c3b10e8946a79ffbe 3 | size 17169 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/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d4252af302a851ab32069fdc40e91217c8b3279c7c69134d3300e28d7ecb8ad 3 | size 110287 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Blueprints/BP_ThirdPersonController.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77acce2e2b53eb3e07590cc69a74e39686596f3ad538c3759f314e6e46538f0e 3 | size 33477 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Blueprints/BP_ThirdPersonGameMode.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e08a901cd2eca41886f3c953afa452ce3a859b32b5fc921e77884e101a3a1084 3 | size 19783 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Blueprints/W_PlayerHUD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2107fee3d333573595c430a6fa21210df33d39a991a725577968f0bf7d2620da 3 | size 23946 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Blueprints/W_StaminaBar.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7c2ef8f6806f9c786c7a641a33bef6680d0ca3c39794c2946ccdebcca7baed1 3 | size 185918 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Crouch.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10c0223c2c576c5b4e64179f79851fed7d26eb493bb85f3ce77c3d360ac7a61d 3 | size 1360 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Jump.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be70c0d8a764ac67ce853e9bf07a97332996c27bcbf49e0ffafe0c3c13711c51 3 | size 1307 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Look.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f31e273949de9b9798743f238b895cd422d9b14e77f73e11d993ff3527bbb735 3 | size 1454 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Move.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8ece438a653b29d1c64011ef11d4bd05245413994ecf4ad80ef4da1694b666f 3 | size 1454 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Prone.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1f58fca0ce64a64590bdabe3019a9adb8d45a74f44a3cfea1cfccde386747a7 3 | size 1355 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Sprint.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:416c794db6cc540c4658647d2db6368a6060d5c6415161911857f000967e2d59 3 | size 1360 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/Actions/IA_Strafe.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dccd09d3b711433a5181fc27324792cf5b6b56cd99354ab3325d131605ebb5b9 3 | size 1360 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Input/IMC_Default.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34ba9f9a6e82006a2655a2ba6b9c0cff0fbdaacc347f53ee61591bacdd35b246 3 | size 15128 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Maps/ThirdPersonMap.umap: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e8b9f62b82a0a01a8aceabd6020cc4bbe80e03fc7d0d948fceda3ff3fe0d462 3 | size 19600 4 | -------------------------------------------------------------------------------- /Content/ThirdPerson/Maps/ThirdPersonMap_BuiltData.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5f8723ed6f2c90e7fcb4c39e87387829d94efc1682a831a69f4eb54553d3ba9 3 | size 3187405 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/43/HYQWORMY4JDQ5X3OKZXFLC.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5b66a81c776d90069dce1a1f6b97fd13ebd75bed3eeecef9341b7769eb6c79b 3 | size 2725 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/FZ/4XWWUGWFDLX56REQRH8Z9W.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb6ee8eb772326f09459ce560a30fdf856167c2d63e2d339994dfb2275f2f286 3 | size 4085 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/SX/SKO7AH9HKZVPN4OMFO4DV3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41069649b9e18e8ef0fa7e499b0685d042dbefb25a4b6ff8cf05768ae9ece1a3 3 | size 4083 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/0G/HOAJZN9E4DDI6Y1W3JU13K.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7da4960c7166070d1beb553f5830711853b68576eb6e05b3d8cb3c8eb17c412a 3 | size 4259 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/2J/AQ1PWWT9TBAI7AA470T014.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d58df588f04a19b1a7e9d24baaa072479e98424635ce2ad9b04f4a21d7f170f 3 | size 4259 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/AZ/A7GPT109Y6ZTTJD4A7TXER.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f48da921e22f146a0e9a033494f73e7a6e0bdae23560c40541ea73e2c866210f 3 | size 12412 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/EJ/PGUWWHRTS59S34GKBX0OUI.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c09ae2489999de7866bfa0bb0ac8cf702067b14771f37972551555dd042b9d6f 3 | size 4607 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/HF/YFYBQ72OYLHJQS0TSSXGBV.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aebc1a03fc1cc275a3a085a2414b75502cde3b9b7b8e596398c4a5f945bb198b 3 | size 4554 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/QS/VHQF8JWOATZI5V3ZVY5YTM.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1a63a58fa0473b49ca10244c97f73cbc79689bcf463108c880c4e0d9b30c7a3 3 | size 4554 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/WU/NB37RT5Q32Z8MJWD8BD2SO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a9b50e79e5ef7ceed9e2d568bd7daf3741a7dc3c6504b48b12d1292f7fd3aed 3 | size 3746 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/2/66/0OP5U85W4H0R7CHG999ZDN.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c63d31b74fb34ccd62f844218e1caea3096a9acfde112bb5edbeda02f86bd18 3 | size 3300 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/1V/XSFYSB2EC9Z21RQOBXZLMO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a230044fd78fb50b1f1ed54138edbaa6a634ee5f8f59004ba0e9216fde66be60 3 | size 4257 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/B1/9G3WNX7WIR7UKI26T9LK5O.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:beb985fce505d8b808a4b9ce039e3f1001c7c009a00d3afc85e0b23a0054d8fa 3 | size 4085 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/HE/U35NZS5A9W1UXP1E3FF2GW.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97a41f6a2af00e9b8edb95a77a6320c32078d2528512cbd5b180a86c3f36c6c4 3 | size 3983 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/OG/KDQDMXAXZXD8VLDDU4K3JL.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3cd06524bb4945fb0fa8402ed950f03bef10d76f50f6dd19595da24a1d130a7 3 | size 5015 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/P3/O43ETCZTFMLWWH1CJ941H2.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e73c6c7d4d225a7196b2c5906fb34b7dd54ffa8cbcb7504f4a008ca733d16e1 3 | size 4438 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/Q1/5IZD4L3UPM3EEODZK67MH1.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:787d45c626e04e33490e0293215d4eaa384f154eec3f9b7ac9611dab25d51b75 3 | size 4143 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/0D/0WM78RPJCXHX477YOZXKQE.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c21918f264c05666ed09cda482d4d137a7d81cc2a67f747bf6729ae8f7059d2b 3 | size 4083 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/HF/9H7TKAXH9DD8KI3TIXGI2I.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5d007cc8571f1191319d3e019324a754c466ef54fdff4a881ce2395298c905f 3 | size 4079 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/NC/UUYHDUFQAXTRRN4RVOPIUF.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bb5da121c05b7dc1da3c43e9cd7b67630d4d69e64d895adebf4584627f5bda3 3 | size 4107 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/NP/Z9EK2TXQ1TFO26WFZHWZII.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:596d164a9c149af87b384d8132b74583aae4fa5b9fb6ff1fe5100efe48fc8689 3 | size 3364 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/UV/1C6W14EIHMXOXXB657JYKB.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ae7576eee89d8def30e67ac4590f2349cdb26a1488f1d62670ba643a6aec883 3 | size 4199 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/7Y/C94R5C0R01QSL2SVHUG3KD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eeb2d5c32c92dde7da650f1c0e28b0318fdb2ec320eec6b38ec56e273e00c82 3 | size 4257 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H9/GITN2HJQNERMM41FAE68W0.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d526e85dd6b00ae1e550a509dd21dc308b3bef198300938e7f3d49540704386a 3 | size 3601 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/P1/NN84RP20JNUCL0SHI5W2B8.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad7ce57ee4db04d8b34862228a9a8eb0520a9a2016e982df5374e04e81041e85 3 | size 4137 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/9/21/WWYX44RDCCS98492P9K9O3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2cc9b152cf0171f0da0147e7e2b1a45a7da803b8585fe0300d795a2bc98843ff 3 | size 4083 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/9/6I/RU1L28PS820IOVH625A0DA.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad08de5d7e928d08da67e868030cb76230874a9380200f27575dbc6fdc918ebe 3 | size 4259 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/9/CI/KST702KSCRZWYV56G3VJBD.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13c37cf7da8e54d5a9c733a209b3d84484e3c29a4a81e87f13f5520a51907770 3 | size 4195 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/9/MO/72II2GSLK9VS0ULW9SACWH.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d9ae3c360d130eb5f2824b2235dd3bee7b61c649bd1e3056914b25f63f072d6 3 | size 4081 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/A/BW/M7Z5RX3O7568TBJFK5R76I.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d9785c14f57af40b7b2ea05a60a6dc5703e8ab9848ab980b0b7673c90524d0e 3 | size 4197 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/A/IO/07IVU4EY14FMETPGTJULEO.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd01191dd97eddc4dd58042d38cf81bdbe6a2c7a7fb325c7ad5a72a8bf2a2601 3 | size 4145 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/B/CJ/ZQ5BFL59YGMQUT9ZD7CAHJ.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d36d6d378261d895fd200239df3a51f71d91878886963f5b9c71c72c7afe1f4 3 | size 4083 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/B/KW/9YH18EUCJFK5CZXL6H3W3R.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fa993398f6b05dbdafe6d8cfa0444a8b1da501c3b103983d567b2d0c471ed98 3 | size 3378 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/0I/VIQQWOEJKSKV1EK1XGX3EY.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97556c67bcf00ebc8dc99200fb036e5ef9d2a7ba1c866932c30de63602eb6612 3 | size 4195 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/D/DE/SWSI13675DVYIZ0N4NF7Y3.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:155efc55358d86b7b7017b683862030b83481f5dbb4551c9d759694bb112232b 3 | size 4064 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/D/MM/5416TNIX8GKJW3B714Y6WF.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da81cbbe66fd8cc93c6015adbdaf10d79d417f2102d586d230b9434415c50f6a 3 | size 4257 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/D/OI/BVNTLHAPOPDXURSVGR63ME.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1acced0dca47586b090ac74dc77bc38d083f07e68ae10fde10cb860c2befe25e 3 | size 4257 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/D/SY/Z4CTQ4LG3YV10EKPD0UE8Q.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90adcdc364f7f30c5538c5bf8596bea4f66c70068f90990210fc986aeb2ef5ea 3 | size 849 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/D/VL/KUT2U1MQ1ND9CXN070OTDM.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b251c0f1d34e124a9c75c2efcb3c74fabcfdf5871b15a68d18df63e89c322fb5 3 | size 4085 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/FR/LBG6LPN5JCL3FMVSI2CK6R.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6cbaaaa9a10138be4952b22394cd3107901561e24650e05851f7f327326cc7b 3 | size 2580 4 | -------------------------------------------------------------------------------- /Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/T8/46ZIBNTTDDR3AOR2XC9VO6.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a82e69dbef197b40a16ea06a6b44aff09f7d81ec7c0de80ef77aa7ca47b9197 3 | size 4197 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/3/DH/JQTP3L9HHXRN8IUHATI906.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8502666e004c0b5c35154b7464b441013c705eed34c3ea749f17c36c96558cf7 3 | size 2011 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/4/4A/NCNZF2U4ZTZ8XZJNF86FNT.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fd467498618623173886f91ea74e8e2a647fb4eb05887dfb71b36602364b49b 3 | size 2009 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/8/05/U8OLLG133BEQMR58UPHM3P.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce6528560be9a7d4a162f899701bf0117c3aebce4a53ca8b1a4974070bde602b 3 | size 2009 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/A/KP/VZTB4WP3P1L1F1WL9R6XLZ.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03f8cff85345b9cd9307106f09dc44109abea9c061343ceac9ad9e118e377132 3 | size 2015 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/B/AN/0Z4D0BFPHEXAYK76DY0WLL.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf3a8b0b3a498efe6e49e4c5dae12833aefdd9bf87663ee35f6a210e847588b1 3 | size 2009 4 | -------------------------------------------------------------------------------- /Content/__ExternalObjects__/ThirdPerson/Maps/ThirdPersonMap/D/13/KQB15WT334LUGWVAUX80XH.uasset: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d98ab61e02eafe51722506d3a0382ad21976f47e2290f539607fb3ba9d71038d 3 | size 2011 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Jared Taylor 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PredictedExample.uproject: -------------------------------------------------------------------------------- 1 | { 2 | "FileVersion": 3, 3 | "EngineAssociation": "5.1", 4 | "Category": "", 5 | "Description": "", 6 | "Modules": [ 7 | { 8 | "Name": "PredictedExample", 9 | "Type": "Runtime", 10 | "LoadingPhase": "Default" 11 | } 12 | ], 13 | "Plugins": [ 14 | { 15 | "Name": "ModelingToolsEditorMode", 16 | "Enabled": true, 17 | "TargetAllowList": [ 18 | "Editor" 19 | ] 20 | }, 21 | { 22 | "Name": "PredictedMovement", 23 | "Enabled": true 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PredictedMovementExample 2 | This is the third person template example project for the [PredictedMovement Plugin](https://github.com/Vaei/PredictedMovement). 3 | 4 | We use the `link` branch which links all the classes together via inheritance. 5 | 6 | This is for UE5.1. 7 | 8 | ## Cloning Repo 9 | When cloning you should use: `git clone https://github.com/Vaei/PredictedMovementExample.git --recurse-submodules` 10 | 11 | If you don't, you can use this after the fact: `git submodule update --init --recursive` 12 | 13 | ## Updating Repo 14 | `git pull` will update your repo for changes to this project BUT it will not retrieve changes to the plugin itself. 15 | 16 | For that you must run the command `git submodule update --recursive --remote` 17 | 18 | ## Example Changes 19 | You can find a note for all changes made to the ThirdPersonTemplate by doing a project-wide search in the source code for `EXAMPLE_CHANGE` 20 | -------------------------------------------------------------------------------- /Source/PredictedExample.Target.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | using System.Collections.Generic; 5 | 6 | public class PredictedExampleTarget : TargetRules 7 | { 8 | public PredictedExampleTarget(TargetInfo Target) : base(Target) 9 | { 10 | Type = TargetType.Game; 11 | DefaultBuildSettings = BuildSettingsVersion.V2; 12 | IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1; 13 | ExtraModuleNames.Add("PredictedExample"); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExample.Build.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | 5 | public class PredictedExample : ModuleRules 6 | { 7 | public PredictedExample(ReadOnlyTargetRules Target) : base(Target) 8 | { 9 | PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; 10 | 11 | PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HeadMountedDisplay", "EnhancedInput", "PredictedMovement" }); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExample.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "PredictedExample.h" 4 | #include "Modules/ModuleManager.h" 5 | 6 | IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, PredictedExample, "PredictedExample" ); 7 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExample.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleCharacter.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "PredictedExampleCharacter.h" 4 | #include "Camera/CameraComponent.h" 5 | #include "Components/CapsuleComponent.h" 6 | #include "Components/InputComponent.h" 7 | #include "GameFramework/CharacterMovementComponent.h" 8 | #include "GameFramework/Controller.h" 9 | #include "GameFramework/SpringArmComponent.h" 10 | #include "EnhancedInputComponent.h" 11 | #include "EnhancedInputSubsystems.h" 12 | #include "PredictedExampleCharacterMovement.h" 13 | 14 | 15 | ////////////////////////////////////////////////////////////////////////// 16 | // APredictedExampleCharacter 17 | 18 | APredictedExampleCharacter::APredictedExampleCharacter(const FObjectInitializer& ObjectInitializer) 19 | : Super(ObjectInitializer.SetDefaultSubobjectClass(CharacterMovementComponentName)) // EXAMPLE_CHANGE - Use our CMC 20 | { 21 | // EXAMPLE_CHANGE cache a reference to our own movement component 22 | PredictedMovement = Cast(GetCharacterMovement()); 23 | 24 | // EXAMPLE_CHANGE Let us see the capsule, because otherwise we can't tell if crouch or prone! 25 | GetCapsuleComponent()->SetHiddenInGame(false); 26 | 27 | // Set size for collision capsule 28 | GetCapsuleComponent()->InitCapsuleSize(42.f, 96.0f); 29 | 30 | // Don't rotate when the controller rotates. Let that just affect the camera. 31 | bUseControllerRotationPitch = false; 32 | bUseControllerRotationYaw = false; 33 | bUseControllerRotationRoll = false; 34 | 35 | // Configure character movement 36 | GetCharacterMovement()->bOrientRotationToMovement = true; // Character moves in the direction of input... 37 | GetCharacterMovement()->RotationRate = FRotator(0.0f, 500.0f, 0.0f); // ...at this rotation rate 38 | 39 | // Note: For faster iteration times these variables, and many more, can be tweaked in the Character Blueprint 40 | // instead of recompiling to adjust them 41 | GetCharacterMovement()->JumpZVelocity = 700.f; 42 | GetCharacterMovement()->AirControl = 0.35f; 43 | GetCharacterMovement()->MaxWalkSpeed = 500.f; 44 | GetCharacterMovement()->MinAnalogWalkSpeed = 20.f; 45 | GetCharacterMovement()->BrakingDecelerationWalking = 2000.f; 46 | 47 | // Create a camera boom (pulls in towards the player if there is a collision) 48 | CameraBoom = CreateDefaultSubobject(TEXT("CameraBoom")); 49 | CameraBoom->SetupAttachment(RootComponent); 50 | CameraBoom->TargetArmLength = 400.0f; // The camera follows at this distance behind the character 51 | CameraBoom->bUsePawnControlRotation = true; // Rotate the arm based on the controller 52 | 53 | // Create a follow camera 54 | FollowCamera = CreateDefaultSubobject(TEXT("FollowCamera")); 55 | FollowCamera->SetupAttachment(CameraBoom, USpringArmComponent::SocketName); // Attach the camera to the end of the boom and let the boom adjust to match the controller orientation 56 | FollowCamera->bUsePawnControlRotation = false; // Camera does not rotate relative to arm 57 | 58 | // Note: The skeletal mesh and anim blueprint references on the Mesh component (inherited from Character) 59 | // are set in the derived blueprint asset named ThirdPersonCharacter (to avoid direct content references in C++) 60 | } 61 | 62 | float APredictedExampleCharacter::GetStamina() const 63 | { 64 | return PredictedMovement ? PredictedMovement->GetStamina() : 0.f; 65 | } 66 | 67 | float APredictedExampleCharacter::GetMaxStamina() const 68 | { 69 | return PredictedMovement ? PredictedMovement->GetMaxStamina() : 0.f; 70 | } 71 | 72 | float APredictedExampleCharacter::GetStaminaNormalized() const 73 | { 74 | return (GetMaxStamina() > 0.f) ? (GetStamina() / GetMaxStamina()) : 0.f; 75 | } 76 | 77 | void APredictedExampleCharacter::BeginPlay() 78 | { 79 | // Call the base class 80 | Super::BeginPlay(); 81 | 82 | //Add Input Mapping Context 83 | if (APlayerController* PlayerController = Cast(Controller)) 84 | { 85 | if (UEnhancedInputLocalPlayerSubsystem* Subsystem = ULocalPlayer::GetSubsystem(PlayerController->GetLocalPlayer())) 86 | { 87 | Subsystem->AddMappingContext(DefaultMappingContext, 0); 88 | } 89 | } 90 | } 91 | 92 | ////////////////////////////////////////////////////////////////////////// 93 | // Input 94 | 95 | void APredictedExampleCharacter::SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) 96 | { 97 | // Set up action bindings 98 | if (UEnhancedInputComponent* EnhancedInputComponent = CastChecked(PlayerInputComponent)) { 99 | 100 | //Jumping 101 | EnhancedInputComponent->BindAction(JumpAction, ETriggerEvent::Triggered, this, &ACharacter::Jump); 102 | EnhancedInputComponent->BindAction(JumpAction, ETriggerEvent::Completed, this, &ACharacter::StopJumping); 103 | 104 | //Moving 105 | EnhancedInputComponent->BindAction(MoveAction, ETriggerEvent::Triggered, this, &APredictedExampleCharacter::Move); 106 | 107 | //Looking 108 | EnhancedInputComponent->BindAction(LookAction, ETriggerEvent::Triggered, this, &APredictedExampleCharacter::Look); 109 | 110 | } 111 | 112 | } 113 | 114 | void APredictedExampleCharacter::Move(const FInputActionValue& Value) 115 | { 116 | // input is a Vector2D 117 | FVector2D MovementVector = Value.Get(); 118 | 119 | if (Controller != nullptr) 120 | { 121 | // find out which way is forward 122 | const FRotator Rotation = Controller->GetControlRotation(); 123 | const FRotator YawRotation(0, Rotation.Yaw, 0); 124 | 125 | // get forward vector 126 | const FVector ForwardDirection = FRotationMatrix(YawRotation).GetUnitAxis(EAxis::X); 127 | 128 | // get right vector 129 | const FVector RightDirection = FRotationMatrix(YawRotation).GetUnitAxis(EAxis::Y); 130 | 131 | // add movement 132 | AddMovementInput(ForwardDirection, MovementVector.Y); 133 | AddMovementInput(RightDirection, MovementVector.X); 134 | } 135 | } 136 | 137 | void APredictedExampleCharacter::Look(const FInputActionValue& Value) 138 | { 139 | // input is a Vector2D 140 | FVector2D LookAxisVector = Value.Get(); 141 | 142 | if (Controller != nullptr) 143 | { 144 | // add yaw and pitch input to controller 145 | AddControllerYawInput(LookAxisVector.X); 146 | AddControllerPitchInput(LookAxisVector.Y); 147 | } 148 | } 149 | 150 | 151 | 152 | 153 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleCharacter.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | #include "InputActionValue.h" 7 | #include "Sprint/SprintCharacter.h" 8 | #include "PredictedExampleCharacter.generated.h" 9 | 10 | // EXAMPLE_CHANGE - UI Events 11 | DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FStaminaChanged, float, Stamina); 12 | DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FMaxStaminaChanged, float, MaxStamina); 13 | DECLARE_DYNAMIC_MULTICAST_DELEGATE(FStaminaDrained); 14 | DECLARE_DYNAMIC_MULTICAST_DELEGATE(FStaminaRecovered); 15 | 16 | class UPredictedExampleCharacterMovement; 17 | 18 | UCLASS(config=Game) 19 | class APredictedExampleCharacter : public ASprintCharacter // EXAMPLE_CHANGE - Inherit ASprintCharacter (Stamina does not have a character) 20 | { 21 | GENERATED_BODY() 22 | 23 | // EXAMPLE_CHANGE - Add our character movement component here 24 | 25 | /** Movement component used for movement logic in various movement modes (walking, falling, etc), containing relevant settings and functions to control movement. */ 26 | UPROPERTY(Category=Character, VisibleAnywhere, BlueprintReadOnly, meta=(AllowPrivateAccess = "true")) 27 | TObjectPtr PredictedMovement; 28 | 29 | /** Camera boom positioning the camera behind the character */ 30 | UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera, meta = (AllowPrivateAccess = "true")) 31 | class USpringArmComponent* CameraBoom; 32 | 33 | /** Follow camera */ 34 | UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera, meta = (AllowPrivateAccess = "true")) 35 | class UCameraComponent* FollowCamera; 36 | 37 | /** MappingContext */ 38 | UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true")) 39 | class UInputMappingContext* DefaultMappingContext; 40 | 41 | /** Jump Input Action */ 42 | UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true")) 43 | class UInputAction* JumpAction; 44 | 45 | /** Move Input Action */ 46 | UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true")) 47 | class UInputAction* MoveAction; 48 | 49 | /** Look Input Action */ 50 | UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true")) 51 | class UInputAction* LookAction; 52 | 53 | public: 54 | // EXAMPLE_CHANGE - UI Events 55 | 56 | UPROPERTY(BlueprintAssignable) 57 | FStaminaChanged OnStaminaChanged; 58 | 59 | UPROPERTY(BlueprintAssignable) 60 | FMaxStaminaChanged OnMaxStaminaChanged; 61 | 62 | UPROPERTY(BlueprintAssignable) 63 | FStaminaDrained OnStaminaDrained; 64 | 65 | UPROPERTY(BlueprintAssignable) 66 | FStaminaRecovered OnStaminaRecovered; 67 | 68 | // EXAMPLE_CHANGE - Stamina getters, the UI needs these 69 | 70 | UFUNCTION(BlueprintPure, Category="PredictedExample") 71 | float GetStamina() const; 72 | 73 | UFUNCTION(BlueprintPure, Category="PredictedExample") 74 | float GetMaxStamina() const; 75 | 76 | UFUNCTION(BlueprintPure, Category="PredictedExample") 77 | float GetStaminaNormalized() const; 78 | 79 | public: 80 | /* EXAMPLE_CHANGE #2 - Add an object initializer */ 81 | APredictedExampleCharacter(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); 82 | 83 | protected: 84 | 85 | /** Called for movement input */ 86 | void Move(const FInputActionValue& Value); 87 | 88 | /** Called for looking input */ 89 | void Look(const FInputActionValue& Value); 90 | 91 | 92 | protected: 93 | // APawn interface 94 | virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override; 95 | 96 | // To add mapping context 97 | virtual void BeginPlay(); 98 | 99 | public: 100 | /** Returns CameraBoom subobject **/ 101 | FORCEINLINE class USpringArmComponent* GetCameraBoom() const { return CameraBoom; } 102 | /** Returns FollowCamera subobject **/ 103 | FORCEINLINE class UCameraComponent* GetFollowCamera() const { return FollowCamera; } 104 | }; 105 | 106 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleCharacterMovement.cpp: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | 4 | #include "PredictedExampleCharacterMovement.h" 5 | 6 | #include "PredictedExampleCharacter.h" 7 | #include "GameFramework/Character.h" 8 | 9 | UPredictedExampleCharacterMovement::UPredictedExampleCharacterMovement(const FObjectInitializer& ObjectInitializer) 10 | : Super(ObjectInitializer) 11 | { 12 | // EXAMPLE_CHANGE Define max stamina 13 | 14 | SetMaxStamina(100.f); 15 | 16 | // EXAMPLE_CHANGE Make sprinting very noticable 17 | MaxAccelerationSprinting = 2048.f; 18 | MaxWalkSpeedSprinting = 1200.f; 19 | 20 | // EXAMPLE_CHANGE Enable crouching 21 | 22 | GetNavAgentPropertiesRef().bCanCrouch = true; 23 | 24 | SprintDrainRate = 20.f; 25 | StaminaRegenRate = 14.f; 26 | DrainedRegenRate = 4.f; 27 | } 28 | 29 | void UPredictedExampleCharacterMovement::PostLoad() 30 | { 31 | Super::PostLoad(); 32 | 33 | ExampleCharacter = Cast(PawnOwner); 34 | } 35 | 36 | void UPredictedExampleCharacterMovement::SetUpdatedComponent(USceneComponent* NewUpdatedComponent) 37 | { 38 | Super::SetUpdatedComponent(NewUpdatedComponent); 39 | 40 | ExampleCharacter = Cast(PawnOwner); 41 | } 42 | 43 | bool UPredictedExampleCharacterMovement::HasValidData() const 44 | { 45 | return IsValid(ExampleCharacter) && Super::HasValidData(); 46 | } 47 | 48 | void UPredictedExampleCharacterMovement::BeginPlay() 49 | { 50 | Super::BeginPlay(); 51 | 52 | // EXAMPLE_CHANGE Initialize Stamina and MaxStamina, set to 0 first so that it will trigger the change events 53 | // which will be important for updating any UI in particular later 54 | 55 | const float TempMaxStamina = GetMaxStamina(); 56 | SetMaxStamina(0.f); 57 | SetMaxStamina(TempMaxStamina); 58 | 59 | SetStamina(0.f); 60 | SetStamina(GetMaxStamina()); 61 | } 62 | 63 | void UPredictedExampleCharacterMovement::OnStaminaChanged(float PrevValue, float NewValue) 64 | { 65 | // EXAMPLE_CHANGE Notify Character for purpose of UI 66 | // Either super or our own replacement logic is required here for handling drain state! 67 | 68 | if (IsValid(ExampleCharacter)) 69 | { 70 | ExampleCharacter->OnStaminaChanged.Broadcast(NewValue); 71 | } 72 | 73 | // We will replace the Super call with it's own logic, but modified to require only 10% stamina for recovery 74 | // instead of 100%, as well as using Getters due to private accessibility of MaxStamina and bIsStaminaDrained 75 | 76 | // The comments from the original function have been retained for your perusal, but the suggestions have already 77 | // been implemented 78 | 79 | if (FMath::IsNearlyZero(Stamina)) 80 | { 81 | Stamina = 0.f; 82 | if (!IsStaminaDrained()) 83 | { 84 | SetStaminaDrained(true); 85 | } 86 | } 87 | // This will need to change if not using MaxStamina for recovery, here is an example (commented out) that uses 88 | // 10% instead; to use this, comment out the existing else if statement, and change the 0.1f to the percentage 89 | // you want to use (0.1f is 10%) 90 | else if (IsStaminaDrained() && Stamina >= GetMaxStamina() * 0.1f) 91 | { 92 | SetStaminaDrained(false); 93 | } 94 | 95 | // Super::OnStaminaChanged(PrevValue, NewValue); 96 | } 97 | 98 | void UPredictedExampleCharacterMovement::OnMaxStaminaChanged(float PrevValue, float NewValue) 99 | { 100 | // EXAMPLE_CHANGE Notify Character for purpose of UI 101 | // No need for super, it doesn't do anything 102 | 103 | if (IsValid(ExampleCharacter)) 104 | { 105 | if (ExampleCharacter->OnMaxStaminaChanged.IsBound()) 106 | { 107 | ExampleCharacter->OnMaxStaminaChanged.Broadcast(NewValue); 108 | } 109 | } 110 | } 111 | 112 | void UPredictedExampleCharacterMovement::OnStaminaDrained() 113 | { 114 | // EXAMPLE_CHANGE We must end sprinting here, otherwise it cannot end between ticks and we lose the benefit of the 115 | // additional accuracy between frames 116 | 117 | // No need for super, it doesn't do anything 118 | 119 | UnSprint(false); 120 | 121 | // EXAMPLE_CHANGE Notify Character for purpose of UI 122 | 123 | if (IsValid(ExampleCharacter)) 124 | { 125 | if (ExampleCharacter->OnStaminaDrained.IsBound()) 126 | { 127 | ExampleCharacter->OnStaminaDrained.Broadcast(); 128 | } 129 | } 130 | } 131 | 132 | void UPredictedExampleCharacterMovement::OnStaminaDrainRecovered() 133 | { 134 | // EXAMPLE_CHANGE Notify Character for purpose of UI 135 | // No need for super, it doesn't do anything 136 | 137 | if (IsValid(ExampleCharacter)) 138 | { 139 | if (ExampleCharacter->OnStaminaRecovered.IsBound()) 140 | { 141 | ExampleCharacter->OnStaminaRecovered.Broadcast(); 142 | } 143 | } 144 | } 145 | 146 | float UPredictedExampleCharacterMovement::GetMaxSpeed() const 147 | { 148 | // EXAMPLE_CHANGE lets punish players who end up in a drained state by making them move really slow until they 149 | // recover; you could even return 0.f and leave them stunned! 150 | 151 | // An animation instance could also retrieve IsDrained() to transition to a stunned animation state! 152 | 153 | return Super::GetMaxSpeed() * (IsStaminaDrained() ? 0.1f : 1.f); 154 | } 155 | 156 | void UPredictedExampleCharacterMovement::CalcStamina(float DeltaTime) 157 | { 158 | // EXAMPLE_CHANGE Drain and Restore stamina based on sprint state 159 | 160 | // You do not need to check if a change can actually occur, and you do not need to do any clamping, thats already 161 | // done for you 162 | 163 | if (IsSprintingAtSpeed()) 164 | { 165 | SetStamina(GetStamina() - SprintDrainRate * DeltaTime); 166 | } 167 | else 168 | { 169 | // We can optioanlly allow faster or slower recovery based on the needs of the project once stamina has been 170 | // drained 171 | const float RegenRate = IsStaminaDrained() ? DrainedRegenRate : SprintDrainRate; 172 | SetStamina(GetStamina() + RegenRate * DeltaTime); 173 | } 174 | 175 | // Draw some debug values to the screen 176 | DebugStamina(); 177 | } 178 | 179 | void UPredictedExampleCharacterMovement::CalcVelocity(float DeltaTime, float Friction, bool bFluid, 180 | float BrakingDeceleration) 181 | { 182 | // EXAMPLE_CHANGE Call CalcStamina 183 | 184 | // CalcVelocity occurs between subticks, it is highly accurate and can end sprinting between frames 185 | 186 | CalcStamina(DeltaTime); 187 | Super::CalcVelocity(DeltaTime, Friction, bFluid, BrakingDeceleration); 188 | } 189 | 190 | void UPredictedExampleCharacterMovement::DebugStamina() const 191 | { 192 | #if !UE_BUILD_SHIPPING 193 | if (GEngine) 194 | { 195 | if (CharacterOwner->HasAuthority()) 196 | { 197 | GEngine->AddOnScreenDebugMessage(38265, 1.f, FColor::Orange, FString::Printf(TEXT("[Authority] Stamina %f Drained %d"), GetStamina(), IsStaminaDrained())); 198 | } 199 | else 200 | { 201 | GEngine->AddOnScreenDebugMessage(38266, 1.f, FColor::Orange, FString::Printf(TEXT("[Autonomous] Stamina %f Drained %d"), GetStamina(), IsStaminaDrained())); 202 | } 203 | } 204 | #endif 205 | } 206 | 207 | bool UPredictedExampleCharacterMovement::CanProneInCurrentState() const 208 | { 209 | // EXAMPLE_CHANGE Can only prone when on the ground, saves us handling more complex animation transitions! (which 210 | // we don't actually do for this example either way) 211 | 212 | if (!IsMovingOnGround()) 213 | { 214 | return false; 215 | } 216 | return Super::CanProneInCurrentState(); 217 | } 218 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleCharacterMovement.h: -------------------------------------------------------------------------------- 1 | // Fill out your copyright notice in the Description page of Project Settings. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | #include "Stamina/StaminaMovement.h" 7 | #include "PredictedExampleCharacterMovement.generated.h" 8 | 9 | // EXAMPLE_CHANGE - Create a character movement component from UStaminaMovement 10 | 11 | class APredictedExampleCharacter; 12 | /** 13 | * 14 | */ 15 | UCLASS() 16 | class PREDICTEDEXAMPLE_API UPredictedExampleCharacterMovement : public UStaminaMovement 17 | { 18 | GENERATED_BODY() 19 | 20 | public: 21 | // EXAMPLE_CHANGE Properties to customize stamina drain and recovery 22 | 23 | UPROPERTY(Category="Character Movement: Stamina", EditAnywhere, BlueprintReadWrite) 24 | float SprintDrainRate; 25 | 26 | UPROPERTY(Category="Character Movement: Stamina", EditAnywhere, BlueprintReadWrite) 27 | float StaminaRegenRate; 28 | 29 | UPROPERTY(Category="Character Movement: Stamina", EditAnywhere, BlueprintReadWrite) 30 | float DrainedRegenRate; 31 | 32 | protected: 33 | /** Character movement component belongs to */ 34 | UPROPERTY(Transient, DuplicateTransient) 35 | TObjectPtr ExampleCharacter; 36 | 37 | public: 38 | UPredictedExampleCharacterMovement(const FObjectInitializer& ObjectInitializer); 39 | 40 | virtual void PostLoad() override; 41 | virtual void SetUpdatedComponent(USceneComponent* NewUpdatedComponent) override; 42 | virtual bool HasValidData() const override; 43 | 44 | virtual void BeginPlay() override; 45 | 46 | // Stamina & Sprint 47 | virtual void OnStaminaChanged(float PrevValue, float NewValue) override; 48 | virtual void OnMaxStaminaChanged(float PrevValue, float NewValue) override; 49 | virtual void OnStaminaDrained() override; 50 | virtual void OnStaminaDrainRecovered() override; 51 | 52 | virtual float GetMaxSpeed() const override; 53 | 54 | void CalcStamina(float DeltaTime); 55 | virtual void CalcVelocity(float DeltaTime, float Friction, bool bFluid, float BrakingDeceleration) override; 56 | 57 | void DebugStamina() const; 58 | 59 | // Prone 60 | virtual bool CanProneInCurrentState() const override; 61 | }; 62 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleGameMode.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "PredictedExampleGameMode.h" 4 | #include "PredictedExampleCharacter.h" 5 | #include "UObject/ConstructorHelpers.h" 6 | 7 | APredictedExampleGameMode::APredictedExampleGameMode() 8 | { 9 | // set default pawn class to our Blueprinted character 10 | static ConstructorHelpers::FClassFinder PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacter")); 11 | if (PlayerPawnBPClass.Class != NULL) 12 | { 13 | DefaultPawnClass = PlayerPawnBPClass.Class; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source/PredictedExample/PredictedExampleGameMode.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | #include "GameFramework/GameModeBase.h" 7 | #include "PredictedExampleGameMode.generated.h" 8 | 9 | UCLASS(minimalapi) 10 | class APredictedExampleGameMode : public AGameModeBase 11 | { 12 | GENERATED_BODY() 13 | 14 | public: 15 | APredictedExampleGameMode(); 16 | }; 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Source/PredictedExampleEditor.Target.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | using System.Collections.Generic; 5 | 6 | public class PredictedExampleEditorTarget : TargetRules 7 | { 8 | public PredictedExampleEditorTarget(TargetInfo Target) : base(Target) 9 | { 10 | Type = TargetType.Editor; 11 | DefaultBuildSettings = BuildSettingsVersion.V2; 12 | IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1; 13 | ExtraModuleNames.Add("PredictedExample"); 14 | } 15 | } 16 | --------------------------------------------------------------------------------