From c956bf29781ef36b8f10a9080fc207c1a1b2988c Mon Sep 17 00:00:00 2001 From: Ji Yoon Rhee Date: Sun, 9 Jun 2024 22:23:51 +0900 Subject: [PATCH] added death event, stance variable to character blueprint --- hwanyoung2/Content/Hwanyoung/BP_HYGameMode.uasset | 2 +- .../Character/PlayerCharacter/BP_DefaultInputContext.uasset | 3 --- .../PlayerCharacter/BP_HYPlayerCharacController.uasset | 4 ++-- .../Character/PlayerCharacter/BP_InventoryInputContext.uasset | 3 --- .../Character/PlayerCharacter/BP_PlayerCharacterBase.uasset | 4 ++-- .../PlayerCharacter/BP_ProjectileInputContext.uasset | 3 --- .../PlayerCharacter/Input/InputActions/IA_Interact.uasset | 3 +++ .../Input/InputActions/IA_ToggleInventory.uasset | 3 +++ .../PlayerCharacter/Input/InputActions/IA_UseAbility1.uasset | 3 +++ .../PlayerCharacter/Input/InputActions/IA_UseAbility2.uasset | 3 +++ .../PlayerCharacter/Input/InputActions/IA_UseAbility3.uasset | 3 +++ .../PlayerCharacter/Input/InputActions/IA_UseUltimate.uasset | 3 +++ .../Input/InputMappingContexts/BP_DefaultInputContext.uasset | 3 +++ .../InputMappingContexts/BP_InventoryInputContext.uasset | 3 +++ .../InputMappingContexts/BP_ProjectileInputContext.uasset | 3 +++ .../Character/PlayerCharacter/InputActions/IA_Interact.uasset | 3 --- .../PlayerCharacter/InputActions/IA_ToggleInventory.uasset | 3 --- .../PlayerCharacter/InputActions/IA_UseAbility1.uasset | 3 --- .../PlayerCharacter/InputActions/IA_UseAbility2.uasset | 3 --- .../PlayerCharacter/InputActions/IA_UseAbility3.uasset | 3 --- .../PlayerCharacter/InputActions/IA_UseUltimate.uasset | 3 --- .../Illusions/GeneralizedBlueprints/E_AttackStance.uasset | 4 ++-- .../ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset | 4 ++-- 23 files changed, 36 insertions(+), 36 deletions(-) delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_DefaultInputContext.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_InventoryInputContext.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_ProjectileInputContext.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_Interact.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_ToggleInventory.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility1.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility2.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility3.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseUltimate.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_DefaultInputContext.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_InventoryInputContext.uasset create mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_ProjectileInputContext.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_Interact.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_ToggleInventory.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility1.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility2.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility3.uasset delete mode 100644 hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseUltimate.uasset diff --git a/hwanyoung2/Content/Hwanyoung/BP_HYGameMode.uasset b/hwanyoung2/Content/Hwanyoung/BP_HYGameMode.uasset index 603d9ea3..6e358361 100644 --- a/hwanyoung2/Content/Hwanyoung/BP_HYGameMode.uasset +++ b/hwanyoung2/Content/Hwanyoung/BP_HYGameMode.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64703f9916ef1fe81a6c75b3a502e98030b393f34e190ac011193d97abf09ac9 +oid sha256:da5f65198871264a63c2819ccd9482820777677700cde7ad6f81fa39e186e3cf size 19667 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_DefaultInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_DefaultInputContext.uasset deleted file mode 100644 index 54011c8e..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_DefaultInputContext.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77d5fe12e07589c179130fce8a897b5e81236d56692da2b608786c09f899c7d6 -size 9005 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_HYPlayerCharacController.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_HYPlayerCharacController.uasset index 2ee37b98..59b0ee2c 100644 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_HYPlayerCharacController.uasset +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_HYPlayerCharacController.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10410c3de718a26222f71512cc6d2c3cd47fa8ac329887e74af67c7fd3db80f5 -size 19347 +oid sha256:822597a3d8277a8f64a1024d3a5b516e950fc18627768605130e0c193fb998fb +size 19656 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_InventoryInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_InventoryInputContext.uasset deleted file mode 100644 index 78ff85ba..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_InventoryInputContext.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ec7f7b4238fdaf58fbc198fa00f5abd256af41d27dd551551bd201171f563f01 -size 1461 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_PlayerCharacterBase.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_PlayerCharacterBase.uasset index a44a2c6a..34a33b3a 100644 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_PlayerCharacterBase.uasset +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_PlayerCharacterBase.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82c06108d9a26881d52f835f514504da9cf37a97c7d54a1ba22540bc4297a3dd -size 145596 +oid sha256:51ea105151ab40f6b139fc688a3f126559e31fa9216dc652dcdad48ce114af05 +size 192242 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_ProjectileInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_ProjectileInputContext.uasset deleted file mode 100644 index fe0f0193..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/BP_ProjectileInputContext.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:102167a371b8cb86910525a9ecd6b29249c9b2a81bf4a32a98547283c2a48a04 -size 9038 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_Interact.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_Interact.uasset new file mode 100644 index 00000000..e705e6da --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_Interact.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc2c65682e50ec181ec86d20af08647b0272e57e928a540eac504915d906b15 +size 1872 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_ToggleInventory.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_ToggleInventory.uasset new file mode 100644 index 00000000..9d3ace95 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_ToggleInventory.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9bd46dddbd31f8870807c72f516a5a985ba95106c5bb9505758bffeda4f838 +size 1855 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility1.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility1.uasset new file mode 100644 index 00000000..a275038d --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility1.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cc30d31688065a7846d20c11a0340a8df38d3092def5495d16bf7bce031f09 +size 1443 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility2.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility2.uasset new file mode 100644 index 00000000..c1bc37d7 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility2.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88be926692f39d329d688951031cd959f95d06188de78d175c4b7258ee8dd151 +size 1443 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility3.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility3.uasset new file mode 100644 index 00000000..89579602 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseAbility3.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfcdfe8aaf0615154aebe37e87161fc1ef1e5af551377c3a8bc2b464d077261 +size 1443 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseUltimate.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseUltimate.uasset new file mode 100644 index 00000000..836b2520 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputActions/IA_UseUltimate.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7cc2379c6e9ac4e14b62272ee5d41b2052bb6f570fcc35044a493246e8cdc0 +size 1443 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_DefaultInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_DefaultInputContext.uasset new file mode 100644 index 00000000..7177db8f --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_DefaultInputContext.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9daa4508df4c59a295ec2380ae6cdc2ac296e46cf0718c43e67d0b4946407d60 +size 9164 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_InventoryInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_InventoryInputContext.uasset new file mode 100644 index 00000000..58d34ab3 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_InventoryInputContext.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193a1ab491a998cb9bcdd827a05cc0615a422de3b3dfed523f9c6caf43deea37 +size 3275 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_ProjectileInputContext.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_ProjectileInputContext.uasset new file mode 100644 index 00000000..c0891935 --- /dev/null +++ b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/Input/InputMappingContexts/BP_ProjectileInputContext.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e126e05f41c4135c4d0fda48df1416bbac67656c3983bf90359e57a97bc52309 +size 9197 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_Interact.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_Interact.uasset deleted file mode 100644 index 816cff4b..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_Interact.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4155cc97fed136cbfeb878d251169fd89d3ac51b26205ed29238f2e8207dbbff -size 1854 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_ToggleInventory.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_ToggleInventory.uasset deleted file mode 100644 index a74df7de..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_ToggleInventory.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ee9bbb8b2bb3ce706b83fdd0a4a62cdd655f06eecf6579f2b09fc62a1dc0a14 -size 1837 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility1.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility1.uasset deleted file mode 100644 index cd8cd4b6..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c9a4346e66506b8d0960cea407b1c0092b3a3b1268891c1b8c92acdb3370129 -size 1431 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility2.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility2.uasset deleted file mode 100644 index 87bfa353..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility2.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9fd2a092964b08f4766481637e2b656bbf3e2d9a2ebc76265044b114c607581 -size 1431 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility3.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility3.uasset deleted file mode 100644 index 1a9dee7e..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseAbility3.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b47587486703d7799799716f83a7a869a330e759f6b4c99d085b819ba8b060c -size 1431 diff --git a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseUltimate.uasset b/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseUltimate.uasset deleted file mode 100644 index e07c5b96..00000000 --- a/hwanyoung2/Content/Hwanyoung/Character/PlayerCharacter/InputActions/IA_UseUltimate.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e9dd13a7eedbcbd1116a9bb12d76bcbe484477b9b159c2d1e2499249f0e3bac -size 1431 diff --git a/hwanyoung2/Content/Hwanyoung/Illusions/GeneralizedBlueprints/E_AttackStance.uasset b/hwanyoung2/Content/Hwanyoung/Illusions/GeneralizedBlueprints/E_AttackStance.uasset index c1d66b18..97782160 100644 --- a/hwanyoung2/Content/Hwanyoung/Illusions/GeneralizedBlueprints/E_AttackStance.uasset +++ b/hwanyoung2/Content/Hwanyoung/Illusions/GeneralizedBlueprints/E_AttackStance.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6160eb891aa0e226c43ba2c20017c578fb9ee1c92cb2ca2a73c75a611640d29d -size 3246 +oid sha256:15307ce57f9796adc736aa74e282972faa6a62a0b2f9e69a95586fc2b0227af8 +size 3252 diff --git a/hwanyoung2/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset b/hwanyoung2/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset index 22230ed8..92c5b2ff 100644 --- a/hwanyoung2/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset +++ b/hwanyoung2/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:abf87433b640b724370a36269c29d6b112e134b246f810c60f4260b2703f3d99 -size 34869 +oid sha256:80f0455da6bb5123c857b1263ed42b2ed4baf2c728efb96c731ea81592e37a97 +size 34749