From 0a8720f7068b9aaceec6b8d7a061df1fd0303c44 Mon Sep 17 00:00:00 2001 From: Kevin Poretti Date: Sun, 13 Mar 2022 00:08:51 -0500 Subject: [PATCH] Jump anims and a bit more tweaking --- .../AnimNotifies/ANS_DoMeleeAttack.uasset | 3 --- .../AnimNotifies/AN_CanAttack.uasset | 3 --- .../AnimNotifies/AN_CanDodge.uasset | 3 --- .../Characters/AnimNotifies/AN_CanJump.uasset | 3 --- .../Characters/AnimNotifies/AN_CanMove.uasset | 4 ++-- .../Characters/AnimNotifies/AN_Jump.uasset | 3 +++ .../AN_SetCollisionEnabled.uasset | 3 --- .../AnimNotifies/AN_SetGravityEnabled.uasset | 3 --- .../AnimNotifies/Old/ANS_DoMeleeAttack.uasset | 3 +++ .../AnimNotifies/Old/AN_CanAttack.uasset | 3 +++ .../AnimNotifies/Old/AN_CanDodge.uasset | 3 +++ .../AnimNotifies/Old/AN_CanJump.uasset | 3 +++ .../Old/AN_SetCollisionEnabled.uasset | 3 +++ .../Old/AN_SetGravityEnabled.uasset | 3 +++ .../Locomotion/Common/Air_Dash_Montage.uasset | 4 ++-- .../Common/BS_Common_WalkRunStart.uasset | 3 +++ .../Common/BS_Common_WalkRunStop.uasset | 3 +++ .../Common/BS_Common_WalkRun_Loop.uasset | 3 +++ .../Common/Fighter_Jump_B_Montage.uasset | 3 +++ .../Common/Fighter_Jump_B_start.uasset | 3 +++ .../Common/Fighter_Jump_F_Montage.uasset | 3 +++ .../Common/Fighter_Jump_F_land.uasset | 3 +++ .../Common/Fighter_Jump_F_loop.uasset | 3 +++ .../Common/Fighter_Jump_F_start.uasset | 3 +++ .../Common/Fighter_Jump_Montage.uasset | 3 +++ .../Common/Fighter_Jump_land.uasset | 3 +++ .../Common/Fighter_Jump_loop.uasset | 3 +++ .../Common/Fighter_Jump_start.uasset | 3 +++ .../Common/HandGun_Common_Walk_End1.uasset | 3 --- .../Common/HandGun_Common_Walk_Loop1.uasset | 3 --- .../Common/HandGun_Common_Walk_Start1.uasset | 3 --- .../Dodge/HandGun_Step_B_Montage.uasset | 4 ++-- .../Dodge/HandGun_Step_F_Montage.uasset | 4 ++-- .../Dodge/HandGun_Step_L_Montage.uasset | 4 ++-- .../Dodge/HandGun_Step_R_Montage.uasset | 4 ++-- .../Melee/Air/Sword_AirCombo1_Montage.uasset | 4 ++-- .../Melee/Air/Sword_AirCombo2_Montage.uasset | 4 ++-- .../Melee/Air/Sword_AirCombo3_Montage.uasset | 4 ++-- .../Melee/Air/Sword_AirCombo4_Montage.uasset | 4 ++-- .../Animations/NewProtag_AnimBP.uasset | 4 ++-- .../Protagonist/BP_NewProtag.uasset | 4 ++-- .../AnimNotifies/ANS_DoMeleeAttack.uasset | 4 ++-- .../Core/AnimNotifies/AN_CanAttack.uasset | 4 ++-- .../Core/AnimNotifies/AN_CanDodge.uasset | 4 ++-- .../Core/AnimNotifies/AN_CanJump.uasset | 4 ++-- .../Core/AnimNotifies/AN_CanMove.uasset | 2 +- SwordNGun/Content/Maps/MovementTest.umap | 2 +- .../Private/Characters/SNGCharacterBase.cpp | Bin 6280 -> 5887 bytes .../SNGCharacterMovementComponent.cpp | 2 ++ .../Public/Characters/SNGCharacterBase.h | Bin 2174 -> 1632 bytes 50 files changed, 96 insertions(+), 61 deletions(-) delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/ANS_DoMeleeAttack.uasset delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_CanAttack.uasset delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_CanDodge.uasset delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_CanJump.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_Jump.uasset delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_SetCollisionEnabled.uasset delete mode 100644 SwordNGun/Content/Characters/AnimNotifies/AN_SetGravityEnabled.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/ANS_DoMeleeAttack.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanAttack.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanDodge.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanJump.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetCollisionEnabled.uasset create mode 100644 SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetGravityEnabled.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStart.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStop.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRun_Loop.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_Montage.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_start.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_Montage.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_land.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_loop.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_start.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_Montage.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_land.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_loop.uasset create mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_start.uasset delete mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_End1.uasset delete mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Loop1.uasset delete mode 100644 SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Start1.uasset diff --git a/SwordNGun/Content/Characters/AnimNotifies/ANS_DoMeleeAttack.uasset b/SwordNGun/Content/Characters/AnimNotifies/ANS_DoMeleeAttack.uasset deleted file mode 100644 index ec6e8e2..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/ANS_DoMeleeAttack.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:668f59f340bbd4d686c8a79a23bf3b87bb7736a6ad31c7cc507eea49733aa6fe -size 61509 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_CanAttack.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_CanAttack.uasset deleted file mode 100644 index affd8d7..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_CanAttack.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:101213a7d922f8dee041a5db9d3a62cb307ba90c3de2475ac3a0f98c959fa921 -size 23001 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_CanDodge.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_CanDodge.uasset deleted file mode 100644 index b2faa64..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_CanDodge.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:112106f6f9f5d5972c0bebb2269398808997c74441c27741f6bf218191617a7e -size 22982 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_CanJump.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_CanJump.uasset deleted file mode 100644 index c83a631..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_CanJump.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1938a01546a6a8e39c0694f4583dc4cab810cb5faf7a4972c5b5521f606a10b -size 23010 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_CanMove.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_CanMove.uasset index ace0e36..9780975 100644 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_CanMove.uasset +++ b/SwordNGun/Content/Characters/AnimNotifies/AN_CanMove.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:307c92c9e9a17ef65dcecf9727ee0682631981d98fb5d6bbb148256c006d2027 -size 23085 +oid sha256:ab509ef28cffad3cf980c371ec246ff071d511b81b6215d124d128265fa223b4 +size 35238 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_Jump.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_Jump.uasset new file mode 100644 index 0000000..6def8a9 --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/AN_Jump.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757917a55ad922a05251843948c19f6b5bdf7da7fd1511db0209816965b43275 +size 28463 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_SetCollisionEnabled.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_SetCollisionEnabled.uasset deleted file mode 100644 index 1a44ba6..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_SetCollisionEnabled.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9af39784c70ed1a592233dc2d36a5ee4d3884b9aba99e695c79cf50a810f39f8 -size 36390 diff --git a/SwordNGun/Content/Characters/AnimNotifies/AN_SetGravityEnabled.uasset b/SwordNGun/Content/Characters/AnimNotifies/AN_SetGravityEnabled.uasset deleted file mode 100644 index 2762ca3..0000000 --- a/SwordNGun/Content/Characters/AnimNotifies/AN_SetGravityEnabled.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29c1b802d39ff1355619d1961f2a94e2ac41e8f486d9639aa0c6956b50257544 -size 38661 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/ANS_DoMeleeAttack.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/ANS_DoMeleeAttack.uasset new file mode 100644 index 0000000..d9ea75f --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/ANS_DoMeleeAttack.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c965917e6c4f267c42e2c571a6e38d05c41b0e0fd360031a496bc7b3d75de7 +size 61775 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanAttack.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanAttack.uasset new file mode 100644 index 0000000..71da5ec --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanAttack.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ecb81c5ec567a7a329d547067d15320254ccc361a052d5681e733e3910818ad +size 23632 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanDodge.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanDodge.uasset new file mode 100644 index 0000000..69a7559 --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanDodge.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ca07525c5eda525dc33b50b6d4b35e4da4077376cf7d473614593808538381 +size 23604 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanJump.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanJump.uasset new file mode 100644 index 0000000..e1e5996 --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_CanJump.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d8189497f4976930833e3ad3492f2126a0d4390f97ad3884f92611377b26cb +size 23714 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetCollisionEnabled.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetCollisionEnabled.uasset new file mode 100644 index 0000000..fad9563 --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetCollisionEnabled.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad71aafdf89eb52dcb22059c08de9c05a860d9a56bec3a422abca0329cb3f540 +size 36020 diff --git a/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetGravityEnabled.uasset b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetGravityEnabled.uasset new file mode 100644 index 0000000..97eb233 --- /dev/null +++ b/SwordNGun/Content/Characters/AnimNotifies/Old/AN_SetGravityEnabled.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b210488d961a601b5b2ca42813a4699371821617e72a6912cc30e184857a76 +size 38403 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Air_Dash_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Air_Dash_Montage.uasset index e99fc5f..02012f7 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Air_Dash_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Air_Dash_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:369305057569a703186ff725e3f11cecd354f2515da76b9ffbdb3cd5b67863a5 -size 106157 +oid sha256:5ab13d175fa44f37647e3941eb8d4d33bc8d14a670526a3c09ad81c018008d9f +size 106255 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStart.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStart.uasset new file mode 100644 index 0000000..eaf16b8 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStart.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b23626a820f72904324a83fdae8e275c567c1ebfff26c811aba4f53ced9336 +size 96907 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStop.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStop.uasset new file mode 100644 index 0000000..35ed529 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRunStop.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0566cb483b3f32aa0c9188971965a23112cad12266d1b2c8482f35ba31779cc +size 96895 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRun_Loop.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRun_Loop.uasset new file mode 100644 index 0000000..e52fe04 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/BS_Common_WalkRun_Loop.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f6d008c77aabd1dbdd37490b3c5c90c2c3958960552b6c5ab9d2cd01e3ef39 +size 96903 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_Montage.uasset new file mode 100644 index 0000000..30d8aae --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_Montage.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c7f3d669a02e5aa92f6a05c78124728b26c359bac3db6c2b28dade2d9e7b41 +size 100764 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_start.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_start.uasset new file mode 100644 index 0000000..b7cb54b --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_B_start.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a895cf0953bbaac72439b2d519ff1038297d4e7e4c642d78039c25a08eb6ef +size 132831 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_Montage.uasset new file mode 100644 index 0000000..5073344 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_Montage.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccab3e0fb6616e4ddaeb0da25825610a46836e70be76a2f41f07673509dbcbd4 +size 100764 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_land.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_land.uasset new file mode 100644 index 0000000..3e7c725 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_land.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ddeee5a6e2faf4a373202dc1434b85b90c1be375259411ba3e850fb5d02b17 +size 141081 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_loop.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_loop.uasset new file mode 100644 index 0000000..e7bc9f3 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_loop.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd224b0915840fb5581bc4563454c15b24798bb41219a8c65c71a304f110687 +size 133835 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_start.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_start.uasset new file mode 100644 index 0000000..95b5fe7 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_F_start.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9af723700d563c31a9b2826ec863b6c3f63ddf0f34d0c09e78176a5f513734 +size 42025 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_Montage.uasset new file mode 100644 index 0000000..72d613c --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_Montage.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dadd70b91847df21e536ec5c8de76ba663ba16c562b3a101d57edac935d12fc2 +size 100951 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_land.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_land.uasset new file mode 100644 index 0000000..7e073cc --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_land.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c4dcbc66e1377af8ad5036ddebda8eeb85bce90f87dabb1db281447b6c1adc +size 50183 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_loop.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_loop.uasset new file mode 100644 index 0000000..eeb45a0 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_loop.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee13061abff73589ec181e2c46a475d403227fc285c2d52aa6392c8aec6f21 +size 36175 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_start.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_start.uasset new file mode 100644 index 0000000..091ce99 --- /dev/null +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/Fighter_Jump_start.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c39f3e045486036b994abac65cb09d522fe78e3fdb663e91215fa78812f0cd +size 39377 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_End1.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_End1.uasset deleted file mode 100644 index 5c98c4a..0000000 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_End1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:449fd4e4996844b9303ca24abdba9d326e3296e6e4c3a0720c7409fcb3e1ba33 -size 169365 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Loop1.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Loop1.uasset deleted file mode 100644 index afcc143..0000000 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Loop1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5f928f8c0ecbfdd0637726744beb4f7fbb111742e0d8808071c73cc5eca714bb -size 198471 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Start1.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Start1.uasset deleted file mode 100644 index 25297b3..0000000 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Common/HandGun_Common_Walk_Start1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b5de93cea4d798e52997e1e02358ea07de53dbef932682e9fbb03a97b22a94e -size 183084 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_B_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_B_Montage.uasset index ebd98c8..3f76634 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_B_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_B_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:350caedc2393ff96720c1b8512a4590d6049950038283d1612c2fdcc59001ab6 -size 105998 +oid sha256:b0822f4e6745fdc6c54f43dbee8393a29d216ff78f80b12bbc31ca55f4de6a31 +size 106304 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_F_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_F_Montage.uasset index c451f52..3f44bb4 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_F_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_F_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d74c190d6545dbb48b97e4651e237f73ca40755e74095fd7dc99c6592cbbba76 -size 105199 +oid sha256:48f5b0af33f4bce3edc89b78cf6a7e2750493589415ed216b13522ce35be01f7 +size 105515 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_L_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_L_Montage.uasset index 9ece66b..a0bccb3 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_L_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_L_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9ee8b87827d10bda00c90bcc332a640919dd650aee02933c68802b19418f948 -size 106721 +oid sha256:1a75abbf4c3c7b3e809824b341c0ecd79ec5d65eda774aa62bf5f6543b34faa3 +size 107051 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_R_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_R_Montage.uasset index cc14701..a94b848 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_R_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Locomotion/Ranged/Dodge/HandGun_Step_R_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2cf2bcb9c0c6cf2fd84bfff3a2167b27e0d54af0cd60dbe261f05e20f74bad5 -size 107097 +oid sha256:6ccc8cc4dccfbe9322389fceb6c1673344f257049688a60f57cbc48af4e6c67a +size 107429 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo1_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo1_Montage.uasset index 5266eb4..ebb97fe 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo1_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo1_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e2e4f8e51b3baa7b05b735d81653ec4c59ae01d45cba8e676e94b00e87116ec -size 110330 +oid sha256:735ace5c69d68440ee33da93273b66ef7dc312248bd8b684450a5c06cb79e598 +size 110533 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo2_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo2_Montage.uasset index 7cfc8ca..c7dbf1d 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo2_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo2_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a66b88a86ec0e3eead94cb9090a18a7bd0108ac9610e22e909fe40a2ca08cf3 -size 109540 +oid sha256:e9cb7a16ee45db64fcfd54f86788e0530e1a97567d6e189dc4ecb21f2813bb8b +size 109525 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo3_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo3_Montage.uasset index 305ff76..2410d89 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo3_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo3_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b9c8260dbcc1d42c1b534a71b000708e56d19510c9244c8d127621c42af2f30 -size 108772 +oid sha256:6edd236b22e223d15e211776a6d3fc1299757787a536ef1b54355b75e8df5db3 +size 109295 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo4_Montage.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo4_Montage.uasset index 66a172f..c08ee28 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo4_Montage.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/Melee/Air/Sword_AirCombo4_Montage.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a48d5dc4b6ed89805b0e3da299b925c82a98eaee72959154d9532e2c38b26e5 -size 109199 +oid sha256:08e18d4a6694b86a3a8ca53be755cace786815fbcd9d561bae92653064d2806a +size 109436 diff --git a/SwordNGun/Content/Characters/Protagonist/Animations/NewProtag_AnimBP.uasset b/SwordNGun/Content/Characters/Protagonist/Animations/NewProtag_AnimBP.uasset index 245c0b8..4696939 100644 --- a/SwordNGun/Content/Characters/Protagonist/Animations/NewProtag_AnimBP.uasset +++ b/SwordNGun/Content/Characters/Protagonist/Animations/NewProtag_AnimBP.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2afc51cc43713c9c0b199224b19b02a8cb70745ec2bc4318383a0d4681912d58 -size 798845 +oid sha256:d96495d49da6cd90b87abda3e2b5681d9353cf7aa27c29a2c10271a5914b9d1f +size 310300 diff --git a/SwordNGun/Content/Characters/Protagonist/BP_NewProtag.uasset b/SwordNGun/Content/Characters/Protagonist/BP_NewProtag.uasset index 495786a..3f2ff71 100644 --- a/SwordNGun/Content/Characters/Protagonist/BP_NewProtag.uasset +++ b/SwordNGun/Content/Characters/Protagonist/BP_NewProtag.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9243affa8259717c04da6bdd8ff7270bf0104e828d739fa31016e903a45fe8b4 -size 118953 +oid sha256:6a90b66adb30d17f9a18723e149d2cd553020d021ade8ab5b70c3fa478947682 +size 120934 diff --git a/SwordNGun/Content/Core/AnimNotifies/ANS_DoMeleeAttack.uasset b/SwordNGun/Content/Core/AnimNotifies/ANS_DoMeleeAttack.uasset index be8ebd4..997aac0 100644 --- a/SwordNGun/Content/Core/AnimNotifies/ANS_DoMeleeAttack.uasset +++ b/SwordNGun/Content/Core/AnimNotifies/ANS_DoMeleeAttack.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7583cdd8976cb5b1fe0b0168bcbafa288da90bf2bb3b42e714773c8aa94e246d -size 2287 +oid sha256:e7b1ff957958d8646521bda5b4e028060843f6bbf4cf108350ee4fee1a26ea66 +size 2303 diff --git a/SwordNGun/Content/Core/AnimNotifies/AN_CanAttack.uasset b/SwordNGun/Content/Core/AnimNotifies/AN_CanAttack.uasset index 61caa66..46677e8 100644 --- a/SwordNGun/Content/Core/AnimNotifies/AN_CanAttack.uasset +++ b/SwordNGun/Content/Core/AnimNotifies/AN_CanAttack.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:132fea7ef32450dba94fd0ec4a21ff6e41f022009fe60966b16fc755b2562442 -size 2197 +oid sha256:dc7dbab11b8193fc7270476a4268a8563396b51c87cf5b3b82416624322db3ee +size 2213 diff --git a/SwordNGun/Content/Core/AnimNotifies/AN_CanDodge.uasset b/SwordNGun/Content/Core/AnimNotifies/AN_CanDodge.uasset index 1c47310..01d5ee6 100644 --- a/SwordNGun/Content/Core/AnimNotifies/AN_CanDodge.uasset +++ b/SwordNGun/Content/Core/AnimNotifies/AN_CanDodge.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:345cd7585bb0a2420f7370ea7f3656910987ac42d2b8285b0217b9921595c16c -size 2179 +oid sha256:006d7c6eb18a086e0e80c5b993ad92d3b5d31958a265f222cb05d8471db3e96f +size 2195 diff --git a/SwordNGun/Content/Core/AnimNotifies/AN_CanJump.uasset b/SwordNGun/Content/Core/AnimNotifies/AN_CanJump.uasset index 55030c6..8750151 100644 --- a/SwordNGun/Content/Core/AnimNotifies/AN_CanJump.uasset +++ b/SwordNGun/Content/Core/AnimNotifies/AN_CanJump.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:133fc13d82ea25ff72669ed9e4adbb2d6b662b8d8f3b8ace05186c7d7ef42abc -size 2161 +oid sha256:50e0aef8aedead3abce1319b3710a0cad2120d131b57f089b9339023fde5a191 +size 2177 diff --git a/SwordNGun/Content/Core/AnimNotifies/AN_CanMove.uasset b/SwordNGun/Content/Core/AnimNotifies/AN_CanMove.uasset index b11653f..073bd9e 100644 --- a/SwordNGun/Content/Core/AnimNotifies/AN_CanMove.uasset +++ b/SwordNGun/Content/Core/AnimNotifies/AN_CanMove.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cbb4e7f26908e30855237ae037fd3550d15042f432d81173f9827782def375e +oid sha256:046c81b5ba30e8d8e96f0c728295041aed558ff2c142af6e83a0b6ea02bd6a72 size 2161 diff --git a/SwordNGun/Content/Maps/MovementTest.umap b/SwordNGun/Content/Maps/MovementTest.umap index a7a39be..d130c7b 100644 --- a/SwordNGun/Content/Maps/MovementTest.umap +++ b/SwordNGun/Content/Maps/MovementTest.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:956fdf8e2e0fa6920cc4b70fb88a4166cab3d7bcb0e513dcedac5ba13497cd9b +oid sha256:26fd6b912a81b407319afe9584efe86e9cbb9c364423f99b1fd94d2333d13584 size 949560 diff --git a/SwordNGun/Source/SwordNGun/Private/Characters/SNGCharacterBase.cpp b/SwordNGun/Source/SwordNGun/Private/Characters/SNGCharacterBase.cpp index a35452fce517409fa466f919de53ecf580613f2e..29b8a2aa93396a0190799e8f7ea5fa4a07af6f7e 100644 GIT binary patch literal 5887 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 I;72R?4Iqs#g#Z8m literal 2174 zcmd6oU2hUm5QgU#6aT}eCQ6NI)k};Q1=^<3D&eEXD??$SYXKWrAZYwS{z>(D=PU@_ z2Dmh2*|X=&yfg27oj<>i?bsr#+1S3>SBtG!&>DHnkD&3cGi<;3ToW z-MH*8_Fvmeo>#2ifidG$(ly73kxJQlY>)hT0>aqZ=nwgikQre$UOSg|#|GH!vLD%j z+a0sMbmYV}2X=%92N`Bw=N$AQI%jT8tH9|N#uYT%zAwHptL<0~`#=oxT4his=pVr* z#%m$99kIKHDCXiL*$I4F#8)wp&wV>#HFSnUb`=dFrS`^|ZR%CP5EEHZE*{d5wHBxE zL2mFX+F=f*iU<2brB~w_@;Pw za@l_7`^tgpS@BebN?$${_J~0dROM>o9-P7CdeuJ{>?e*WzY_cI7Su<(r4F;ahgirz z)n};EE^!b3wa8T+w3=`p-=wu$E?hQWwFox@!0Vtax0au%g!?WJJE#I6g{h_i)D zsm5fp?{Qq%+pPaKYi+`AsH=ik+qSxVj_rLbS7`qiw|#n54EK=>JzdDMI3vP|&)7>= zGh%+`F`ttG&E6taK43@ri0q1YsPgq1DWG>Br4DMC&bttno`eoljt2Z<_bJql=D0dZ zbGXmBrcdNmFCRlc>ZXXYT9f>Qo@(>0N!DF)OFWo>f z^}o%_0{4vW*3GD<@QUbB@zw3x!@h1i%^%H^Ffmg1ILJy;Q!(8c$uJ?ONG~HP?wUqH ZKYwFriml&E+hkSa`{Hho%+D;Be*pwKYkvR$