From 6855bf4c4bb50c1b6ed6f935fd5632a7ac3bc158 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Wed, 27 Nov 2024 12:41:25 +0100 Subject: [PATCH 01/10] Fixed AI health and stamina bars and health text --- Content/AI/BD_AI.uasset | 4 ++-- Content/AI/BP_AI.uasset | 4 ++-- Content/AI/BT_AI.uasset | 4 ++-- Content/AI/Tasks/BT_Task_AttackTarget.uasset | 4 ++-- Content/Blueprints/BPC_PlayerStats.uasset | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Content/AI/BD_AI.uasset b/Content/AI/BD_AI.uasset index 7f295e3..d3d9373 100644 --- a/Content/AI/BD_AI.uasset +++ b/Content/AI/BD_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95d05da397acc9d93a03f67a7e414bb8dd6d811343c5805d39a65aeff1f969fc -size 2876 +oid sha256:9ab25d88eda0c42ccc3e6b7223879c549cf2eb9b2fff96b1c3fd1932a92606ca +size 3177 diff --git a/Content/AI/BP_AI.uasset b/Content/AI/BP_AI.uasset index 90f2987..7d19681 100644 --- a/Content/AI/BP_AI.uasset +++ b/Content/AI/BP_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b710d928bfaed970dd6f5f620dd3cf8ab1dabd0cf88c4b020715199b7b261138 -size 548429 +oid sha256:c7d270493c3d641dfccff58bf4cf97a9c0ab74c4b4c5c8b55ecd1fbe83a4d0f8 +size 550093 diff --git a/Content/AI/BT_AI.uasset b/Content/AI/BT_AI.uasset index 7324345..02535f1 100644 --- a/Content/AI/BT_AI.uasset +++ b/Content/AI/BT_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9c32d16767bcaac7c36548ca534b004ddf312436281c6bf169f423727161d2c -size 19453 +oid sha256:214e7aec177d06b1f2a240e0abb3189bd6a0ca4a2755e728e71763de3c8400a3 +size 20559 diff --git a/Content/AI/Tasks/BT_Task_AttackTarget.uasset b/Content/AI/Tasks/BT_Task_AttackTarget.uasset index 3a0a797..44fbe6b 100644 --- a/Content/AI/Tasks/BT_Task_AttackTarget.uasset +++ b/Content/AI/Tasks/BT_Task_AttackTarget.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b485e3980a608ee925a44a1496c8b830ecf874b65f71d5ca69a6b6f0f79d8baf -size 34781 +oid sha256:4b1b03a3f06ace59e596c64acf32322c6d68dcc7160a91011c5f7985995ec536 +size 33980 diff --git a/Content/Blueprints/BPC_PlayerStats.uasset b/Content/Blueprints/BPC_PlayerStats.uasset index ab3a065..5c83ec4 100644 --- a/Content/Blueprints/BPC_PlayerStats.uasset +++ b/Content/Blueprints/BPC_PlayerStats.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1a5771d1ca5ed21f6c9ffafddbf07f6a77bbe1fba99dbc79f622af9afda99d5 -size 525435 +oid sha256:3155d571a1efa9acd79864d0cbd64590db8e30c3501049c1f7cd149187258eb5 +size 567485 From 55bd7b58a69e31f816d8b9762830c6caa5474484 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Wed, 27 Nov 2024 13:30:52 +0100 Subject: [PATCH 02/10] Turotial E28 Done --- Config/DefaultEngine.ini | 2 +- Content/AI/BP_AI.uasset | 4 ++-- Content/AI/BP_AIController_Geneic.uasset | 4 ++-- Content/AI/Boss/BD_AI_Boss.uasset | 3 +++ Content/AI/Boss/BP_AIController_Boss.uasset | 3 +++ Content/AI/Boss/BP_AI_Boss.uasset | 3 +++ Content/AI/Boss/BT_AI_Boss.uasset | 3 +++ Content/Blueprints/BPC_PlayerStats.uasset | 4 ++-- Content/UI/WB_BossHealthBar.uasset | 3 +++ .../Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset | 3 +++ .../Maps/ThirdPersonMap/5/GA/L8XCMIBK6I7XAFYUJGJISL.uasset | 4 ++-- .../Maps/ThirdPersonMap/8/4L/9ANU99QRGUXG3SI2KH0YM8.uasset | 3 --- .../Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset | 3 +++ 13 files changed, 30 insertions(+), 12 deletions(-) create mode 100644 Content/AI/Boss/BD_AI_Boss.uasset create mode 100644 Content/AI/Boss/BP_AIController_Boss.uasset create mode 100644 Content/AI/Boss/BP_AI_Boss.uasset create mode 100644 Content/AI/Boss/BT_AI_Boss.uasset create mode 100644 Content/UI/WB_BossHealthBar.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/4L/9ANU99QRGUXG3SI2KH0YM8.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 93572b7..7487c02 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -28,7 +28,7 @@ r.RayTracing=True r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8 r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8 -r.SkinCache.SceneMemoryLimitInMB=512.000000 +r.SkinCache.SceneMemoryLimitInMB=2048.000000 [/Script/WindowsTargetPlatform.WindowsTargetSettings] DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 diff --git a/Content/AI/BP_AI.uasset b/Content/AI/BP_AI.uasset index 7d19681..92463d9 100644 --- a/Content/AI/BP_AI.uasset +++ b/Content/AI/BP_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7d270493c3d641dfccff58bf4cf97a9c0ab74c4b4c5c8b55ecd1fbe83a4d0f8 -size 550093 +oid sha256:7ea4f1b7a7fe23822e63d34d34db7e8bea4c47dbbfa197c62fb03c188cbef879 +size 555434 diff --git a/Content/AI/BP_AIController_Geneic.uasset b/Content/AI/BP_AIController_Geneic.uasset index 484cc74..24b1673 100644 --- a/Content/AI/BP_AIController_Geneic.uasset +++ b/Content/AI/BP_AIController_Geneic.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5030f6aec355b25bb9f06f1e492d0551a744dfb7fd1c8e8fc8c2ed646d4ceea1 -size 103687 +oid sha256:4ae1d04c04426a9af67cf8d6b140f7f68795dd8820aacc388a079934a4968db7 +size 113802 diff --git a/Content/AI/Boss/BD_AI_Boss.uasset b/Content/AI/Boss/BD_AI_Boss.uasset new file mode 100644 index 0000000..a63267e --- /dev/null +++ b/Content/AI/Boss/BD_AI_Boss.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11eb8304ba2a6f932b3f706c68f229d40c3bf9bda01c63e4313d510baba591c +size 2911 diff --git a/Content/AI/Boss/BP_AIController_Boss.uasset b/Content/AI/Boss/BP_AIController_Boss.uasset new file mode 100644 index 0000000..9c4214e --- /dev/null +++ b/Content/AI/Boss/BP_AIController_Boss.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e556460782ebef563289768117c6257af92ddb5f352677ba9178144c2aa26c +size 74436 diff --git a/Content/AI/Boss/BP_AI_Boss.uasset b/Content/AI/Boss/BP_AI_Boss.uasset new file mode 100644 index 0000000..bfa456f --- /dev/null +++ b/Content/AI/Boss/BP_AI_Boss.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db75c19fb48cec91e488ffbf50f38de43965084513a0361e07134ef4edb0026 +size 73881 diff --git a/Content/AI/Boss/BT_AI_Boss.uasset b/Content/AI/Boss/BT_AI_Boss.uasset new file mode 100644 index 0000000..67cf4db --- /dev/null +++ b/Content/AI/Boss/BT_AI_Boss.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39eacd08cd5ce6862a595b7d7764baf99bdaee084e07e4c7b2d2e04b5475dc03 +size 20868 diff --git a/Content/Blueprints/BPC_PlayerStats.uasset b/Content/Blueprints/BPC_PlayerStats.uasset index 5c83ec4..5901940 100644 --- a/Content/Blueprints/BPC_PlayerStats.uasset +++ b/Content/Blueprints/BPC_PlayerStats.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3155d571a1efa9acd79864d0cbd64590db8e30c3501049c1f7cd149187258eb5 -size 567485 +oid sha256:8bd06bbd587cc63a8dddbc24d479ddd6a0c15e363d9c097191c52c236566422b +size 578918 diff --git a/Content/UI/WB_BossHealthBar.uasset b/Content/UI/WB_BossHealthBar.uasset new file mode 100644 index 0000000..d45a332 --- /dev/null +++ b/Content/UI/WB_BossHealthBar.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f55081b0e8785726cf5f05b55eee826ea1c9f723dadd99149cd150df6911cff +size 27275 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset new file mode 100644 index 0000000..b4c9686 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fe6c425aa37b5ff9e5ca482d014a6fce5a3d8e67db7d64b0ee4c46c61f9d6d +size 10887 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/GA/L8XCMIBK6I7XAFYUJGJISL.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/GA/L8XCMIBK6I7XAFYUJGJISL.uasset index 8c6e539..455b6af 100644 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/GA/L8XCMIBK6I7XAFYUJGJISL.uasset +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/GA/L8XCMIBK6I7XAFYUJGJISL.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c4af73bf82d96454c76f9473538c4f998bc6c9374e911dc433a186917a75120 -size 5000 +oid sha256:f89bbdd889f83b8970705472cb0ee91cf830b49c9b78332809fd1f6c01712625 +size 5583 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/4L/9ANU99QRGUXG3SI2KH0YM8.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/4L/9ANU99QRGUXG3SI2KH0YM8.uasset deleted file mode 100644 index b86b410..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/4L/9ANU99QRGUXG3SI2KH0YM8.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cca265264b8a173a201b95d50ad57dfa91d49dff4b00f3ccfbe2d10e9f153aa3 -size 10918 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset new file mode 100644 index 0000000..a12faee --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818174d5fce793ae1d554188fe52f4cb12d68e20b304bf5c5b436cd4a8bf8743 +size 10599 From f90dbaed85675bc3d121458ea1d4503f98cb73ab Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Wed, 27 Nov 2024 14:13:23 +0100 Subject: [PATCH 03/10] Turotial E29 Done --- Content/AI/BP_AI.uasset | 4 ++-- Content/AI/Boss/BP_AIController_Boss.uasset | 4 ++-- Content/AI/Boss/BP_AI_Boss.uasset | 4 ++-- Content/AI/Civilian/BD_AI_Civilian.uasset | 3 +++ Content/AI/Civilian/BP_AIController_Civilian.uasset | 3 +++ Content/AI/Civilian/BP_AI_Civilian.uasset | 3 +++ Content/AI/Civilian/BT_AI_Civilian.uasset | 3 +++ Content/Blueprints/BPC_PlayerStats.uasset | 4 ++-- Content/Blueprints/E_CharacterTypes.uasset | 3 +++ .../Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset | 3 +++ .../Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset | 3 +++ .../Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset | 3 +++ 12 files changed, 32 insertions(+), 8 deletions(-) create mode 100644 Content/AI/Civilian/BD_AI_Civilian.uasset create mode 100644 Content/AI/Civilian/BP_AIController_Civilian.uasset create mode 100644 Content/AI/Civilian/BP_AI_Civilian.uasset create mode 100644 Content/AI/Civilian/BT_AI_Civilian.uasset create mode 100644 Content/Blueprints/E_CharacterTypes.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset diff --git a/Content/AI/BP_AI.uasset b/Content/AI/BP_AI.uasset index 92463d9..fffd1ca 100644 --- a/Content/AI/BP_AI.uasset +++ b/Content/AI/BP_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ea4f1b7a7fe23822e63d34d34db7e8bea4c47dbbfa197c62fb03c188cbef879 -size 555434 +oid sha256:7605b4c877192b57772cbd5d009de37518ff05f27c73f68a56cdf37f4a10aade +size 558017 diff --git a/Content/AI/Boss/BP_AIController_Boss.uasset b/Content/AI/Boss/BP_AIController_Boss.uasset index 9c4214e..2ed2119 100644 --- a/Content/AI/Boss/BP_AIController_Boss.uasset +++ b/Content/AI/Boss/BP_AIController_Boss.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0e556460782ebef563289768117c6257af92ddb5f352677ba9178144c2aa26c -size 74436 +oid sha256:23fad8fd354a488d680e66ca2330dedf26c54d277e7f7e389936a318f033f725 +size 101433 diff --git a/Content/AI/Boss/BP_AI_Boss.uasset b/Content/AI/Boss/BP_AI_Boss.uasset index bfa456f..fbc8b86 100644 --- a/Content/AI/Boss/BP_AI_Boss.uasset +++ b/Content/AI/Boss/BP_AI_Boss.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4db75c19fb48cec91e488ffbf50f38de43965084513a0361e07134ef4edb0026 -size 73881 +oid sha256:e07338dbbe76766a9ebb37ed219ec465f9102c3a7f3ad0a2d498133e1be52c9e +size 83708 diff --git a/Content/AI/Civilian/BD_AI_Civilian.uasset b/Content/AI/Civilian/BD_AI_Civilian.uasset new file mode 100644 index 0000000..ad33642 --- /dev/null +++ b/Content/AI/Civilian/BD_AI_Civilian.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5836bc9024bf93775ae72de32c330ad75f0f8f2785cbd1a12de61404ca1961 +size 2248 diff --git a/Content/AI/Civilian/BP_AIController_Civilian.uasset b/Content/AI/Civilian/BP_AIController_Civilian.uasset new file mode 100644 index 0000000..e99041c --- /dev/null +++ b/Content/AI/Civilian/BP_AIController_Civilian.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64cf098a89a435f25fe57a3c9dff77115965c2b3eec7ca22c41e89adf850b65 +size 31482 diff --git a/Content/AI/Civilian/BP_AI_Civilian.uasset b/Content/AI/Civilian/BP_AI_Civilian.uasset new file mode 100644 index 0000000..43c59a0 --- /dev/null +++ b/Content/AI/Civilian/BP_AI_Civilian.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fac33589cc0b7f9d5380270a0fdf3954d5fe7544936d18d6eb01611b32e0107 +size 48706 diff --git a/Content/AI/Civilian/BT_AI_Civilian.uasset b/Content/AI/Civilian/BT_AI_Civilian.uasset new file mode 100644 index 0000000..a6ed818 --- /dev/null +++ b/Content/AI/Civilian/BT_AI_Civilian.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70d1d74bc8f33c4e7557bdd6d5e68ad044c950a9f6c501aeb565762337334c9 +size 9244 diff --git a/Content/Blueprints/BPC_PlayerStats.uasset b/Content/Blueprints/BPC_PlayerStats.uasset index 5901940..7270cb8 100644 --- a/Content/Blueprints/BPC_PlayerStats.uasset +++ b/Content/Blueprints/BPC_PlayerStats.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bd06bbd587cc63a8dddbc24d479ddd6a0c15e363d9c097191c52c236566422b -size 578918 +oid sha256:91d200b406f5c7a273b429afc633b7e6401b975125e4a0f9963d3a0773003c5f +size 567553 diff --git a/Content/Blueprints/E_CharacterTypes.uasset b/Content/Blueprints/E_CharacterTypes.uasset new file mode 100644 index 0000000..f733ee2 --- /dev/null +++ b/Content/Blueprints/E_CharacterTypes.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c23bb0bf8ffcfcbbfee2544c8ad6f4c2ba3ae9cd6332ee86bdafadb59eabf5 +size 2729 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset new file mode 100644 index 0000000..8143a3c --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0816e8ef496103d859be3d973c7d853f00f7260bce7ffff5685b195c458cbd5 +size 11362 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset new file mode 100644 index 0000000..2a10af2 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eed05c90b48fe622b12d3d501004bf77162167bb73905b348c6b089b2d37e1c +size 11368 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset new file mode 100644 index 0000000..98dc0d6 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d42fd534a136121c8ad08f4281be202582e52404b164b71d73c0af2c9be906 +size 11368 From 1205478822d2eb9f46fb4acebc42af59bb2117f6 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Wed, 27 Nov 2024 14:13:59 +0100 Subject: [PATCH 04/10] Added health bar removal when in boss combat --- Content/AI/Boss/BP_AIController_Boss.uasset | 4 ++-- Content/AI/Boss/BP_AI_Boss.uasset | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Content/AI/Boss/BP_AIController_Boss.uasset b/Content/AI/Boss/BP_AIController_Boss.uasset index 2ed2119..829d796 100644 --- a/Content/AI/Boss/BP_AIController_Boss.uasset +++ b/Content/AI/Boss/BP_AIController_Boss.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23fad8fd354a488d680e66ca2330dedf26c54d277e7f7e389936a318f033f725 -size 101433 +oid sha256:136ce286e30df3d1b3b4b8679abfd754f00fd8f3da72f94e8155cd31650bb712 +size 101601 diff --git a/Content/AI/Boss/BP_AI_Boss.uasset b/Content/AI/Boss/BP_AI_Boss.uasset index fbc8b86..3c6faee 100644 --- a/Content/AI/Boss/BP_AI_Boss.uasset +++ b/Content/AI/Boss/BP_AI_Boss.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e07338dbbe76766a9ebb37ed219ec465f9102c3a7f3ad0a2d498133e1be52c9e -size 83708 +oid sha256:77d5be18a2cf944181214b25dec70643e870bef2b62690eb33b89120f47892db +size 83764 From e82b63840c7a54b81e69bd4e13beeba304d475b0 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Wed, 27 Nov 2024 14:16:03 +0100 Subject: [PATCH 05/10] Updated Videos in README.md file --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 6963845..787a628 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,4 @@ Developed with Unreal Engine 5 -Current Video: https://www.youtube.com/watch?v=pwPIJJMa4aU&list=PLiSlOaRBfgkcPAhYpGps16PT_9f28amXi&index=29 -Something is wrong. Check previously videos \ No newline at end of file +Current Video: https://youtu.be/F_g_AnDyWi8?si=s_k8SToFpJ7jiMQT \ No newline at end of file From 36ff9e6397784c014033aee448e35d873cca5e83 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Thu, 28 Nov 2024 21:40:59 +0100 Subject: [PATCH 06/10] Turotial E30 Done --- Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset | 4 ++-- Content/ThirdPerson/Input/Actions/IA_Climb.uasset | 3 +++ Content/ThirdPerson/Input/IMC_Default.uasset | 4 ++-- .../Maps/ThirdPersonMap/1/HL/XWFFRCIJ8QK4NRO30ALA6J.uasset | 4 ++-- .../Maps/ThirdPersonMap/6/GO/WRAY88HEUHN4D2H2F9P00Y.uasset | 3 +++ .../Maps/ThirdPersonMap/7/UR/UZUWWLHF8UHMML66BQKV0U.uasset | 3 +++ 6 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 Content/ThirdPerson/Input/Actions/IA_Climb.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/GO/WRAY88HEUHN4D2H2F9P00Y.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/7/UR/UZUWWLHF8UHMML66BQKV0U.uasset diff --git a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset index 2ba3260..059b1f1 100644 --- a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset +++ b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59346feebc260e1e185ef6cb3bbcbbdc78317ad85ba5d3bcb2f611c40191c97c -size 1134321 +oid sha256:3295c0c1ffd65c513f2fa8636ca4818e5d376fed1b43a52bb934a4cf10b86370 +size 1331552 diff --git a/Content/ThirdPerson/Input/Actions/IA_Climb.uasset b/Content/ThirdPerson/Input/Actions/IA_Climb.uasset new file mode 100644 index 0000000..06a6a4a --- /dev/null +++ b/Content/ThirdPerson/Input/Actions/IA_Climb.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bb103692d7b443dab9c36309709a1f0752307b25bd8f15403f694bfaf35160 +size 1397 diff --git a/Content/ThirdPerson/Input/IMC_Default.uasset b/Content/ThirdPerson/Input/IMC_Default.uasset index 05ae6e0..26bfc55 100644 --- a/Content/ThirdPerson/Input/IMC_Default.uasset +++ b/Content/ThirdPerson/Input/IMC_Default.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:309db00e106071ccfaf9f4a4a5197ddea039741237feee15f77940fcf2ba2d80 -size 21534 +oid sha256:f8ed5413b8703c30e958941bbea02217463e176d526536ab08171917b4b707dd +size 22209 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/HL/XWFFRCIJ8QK4NRO30ALA6J.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/HL/XWFFRCIJ8QK4NRO30ALA6J.uasset index 674f65a..b90f312 100644 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/HL/XWFFRCIJ8QK4NRO30ALA6J.uasset +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/HL/XWFFRCIJ8QK4NRO30ALA6J.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:134118722de16cd0aad1727e9d5ef5765851dcb73741df56ea9d52640525d1ff -size 4554 +oid sha256:6e782d87ffdc05e4baaa33bccb48d59cb792284435a7a0943306d37cc2a4033e +size 5040 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/GO/WRAY88HEUHN4D2H2F9P00Y.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/GO/WRAY88HEUHN4D2H2F9P00Y.uasset new file mode 100644 index 0000000..13b9e85 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/6/GO/WRAY88HEUHN4D2H2F9P00Y.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588a1beba6a17060060aa676b3ded26665ff3b1583415a6d4b18e16f6f70c011 +size 4745 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/7/UR/UZUWWLHF8UHMML66BQKV0U.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/7/UR/UZUWWLHF8UHMML66BQKV0U.uasset new file mode 100644 index 0000000..5cf09c0 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/7/UR/UZUWWLHF8UHMML66BQKV0U.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870cdb5186f6c122ffe1933686be9aa43ad356fb2acd9d2bab3190cf4cf1c733 +size 4198 From 789dc922229c8afaf78c9508911667f90145d628 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Thu, 28 Nov 2024 22:09:51 +0100 Subject: [PATCH 07/10] Turotial E31 Done --- Content/Characters/RPG_Character/ABP_RPGCharacter.uasset | 4 ++-- .../RPG_Character/Animations/Climbing/ClimbDown.uasset | 3 +++ .../RPG_Character/Animations/Climbing/ClimbIdle.uasset | 3 +++ .../RPG_Character/Animations/Climbing/ClimbLeft.uasset | 3 +++ .../RPG_Character/Animations/Climbing/ClimbRight.uasset | 3 +++ .../RPG_Character/Animations/Climbing/ClimbUp.uasset | 3 +++ .../Animations/Climbing/ClimbingBlendSpace.uasset | 3 +++ Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset | 4 ++-- 8 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbDown.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbIdle.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbLeft.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbRight.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/ClimbingBlendSpace.uasset diff --git a/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset b/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset index 74e0ed4..60d9ba0 100644 --- a/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset +++ b/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ab5fd67a11edf19a35e009acf0f23ef518ce8d75a35fb6142fa4c9ac0c74eab -size 482500 +oid sha256:7f25bd34db8454f9b515f830c123d418bf6278937565a520703bf1ba97786b5d +size 582320 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbDown.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbDown.uasset new file mode 100644 index 0000000..9ed0a5b --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbDown.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2cc9ea25484af2886d51204df898539b6f4c83decdf69ce2b1dbc65b3c3b195 +size 919035 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbIdle.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbIdle.uasset new file mode 100644 index 0000000..696fedf --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbIdle.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c519afb13cc301bcca010619765fc4fd0779c349e76cb6d3112278ee49c91d +size 1183893 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbLeft.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbLeft.uasset new file mode 100644 index 0000000..42b35dd --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbLeft.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5c1e481dd97da1f3881141a35a330859c413e21c90fba06813bc671727f06d +size 851637 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbRight.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbRight.uasset new file mode 100644 index 0000000..1f0b69e --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbRight.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcaafea4db86ffa7f9771096b5c2e471ba4d83637b21fde0af0866a19f0c0524 +size 847156 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset new file mode 100644 index 0000000..e6d7e18 --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec89764382a76d0a2e0f87e192b247157f9e356d99886bc0f467fd8eb70daeb5 +size 1096333 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbingBlendSpace.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbingBlendSpace.uasset new file mode 100644 index 0000000..476f8ea --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbingBlendSpace.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2138987fb27309d086bfe0efbd6eaea5b104b0e51b8484426ab2b97b8dec9b2b +size 13991 diff --git a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset index 059b1f1..80dbd04 100644 --- a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset +++ b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3295c0c1ffd65c513f2fa8636ca4818e5d376fed1b43a52bb934a4cf10b86370 -size 1331552 +oid sha256:bde7beaabae1428355b3c04056e20949e2b2afb906491fdf263a7811879d07be +size 1342585 From 458fafea233fcfcb8ce8794845875faed2a811b5 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Thu, 28 Nov 2024 22:48:42 +0100 Subject: [PATCH 08/10] Turotial E32 Done --- Content/Characters/RPG_Character/ABP_RPGCharacter.uasset | 4 ++-- .../RPG_Character/Animations/Climbing/ClimbUp.uasset | 4 ++-- .../RPG_Character/Animations/Climbing/MantleLedge.uasset | 3 +++ .../Animations/Climbing/MantleLedge_Montage.uasset | 3 +++ Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset | 4 ++-- .../Maps/ThirdPersonMap/0/4H/R2C03QUF91KV6S7DL6UXKV.uasset | 3 +++ .../Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset | 3 --- .../Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset | 3 --- .../Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset | 3 --- .../Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset | 3 --- .../Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset | 3 --- 11 files changed, 15 insertions(+), 21 deletions(-) create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/MantleLedge.uasset create mode 100644 Content/Characters/RPG_Character/Animations/Climbing/MantleLedge_Montage.uasset create mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/4H/R2C03QUF91KV6S7DL6UXKV.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset delete mode 100644 Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset diff --git a/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset b/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset index 60d9ba0..ed80345 100644 --- a/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset +++ b/Content/Characters/RPG_Character/ABP_RPGCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f25bd34db8454f9b515f830c123d418bf6278937565a520703bf1ba97786b5d -size 582320 +oid sha256:b9f6851ad0788e2615ecf65635ecd9f026454ab21cc6d90cfb43c4589da186cc +size 596559 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset b/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset index e6d7e18..43354f9 100644 --- a/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset +++ b/Content/Characters/RPG_Character/Animations/Climbing/ClimbUp.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec89764382a76d0a2e0f87e192b247157f9e356d99886bc0f467fd8eb70daeb5 -size 1096333 +oid sha256:d10e9a8b58d550b2a2e79f3e30e3b6a3ce6ef12f1a7b93ff61c83e113671505d +size 1096380 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge.uasset b/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge.uasset new file mode 100644 index 0000000..2f82d40 --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a8d838ad650012295858b9baa9d9dfce89551fd179753e639ceacfd025b651 +size 1167168 diff --git a/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge_Montage.uasset b/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge_Montage.uasset new file mode 100644 index 0000000..48cabd1 --- /dev/null +++ b/Content/Characters/RPG_Character/Animations/Climbing/MantleLedge_Montage.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229b86d445430ac47e3f283fe6034ec5f5a26bc9a7f3ea586ea177970c0772c7 +size 15596 diff --git a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset index 80dbd04..73107c2 100644 --- a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset +++ b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bde7beaabae1428355b3c04056e20949e2b2afb906491fdf263a7811879d07be -size 1342585 +oid sha256:742ca81afc98183a28ebe6b6e0aef9ce10b7bc9c9bb58509124562da9c8f8811 +size 1515838 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/4H/R2C03QUF91KV6S7DL6UXKV.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/4H/R2C03QUF91KV6S7DL6UXKV.uasset new file mode 100644 index 0000000..74e0a60 --- /dev/null +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/0/4H/R2C03QUF91KV6S7DL6UXKV.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211fe617f5d6716dad3bdfb3c44563bacb0f6f4282653c2846f4486a869eb9d5 +size 4631 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset deleted file mode 100644 index b4c9686..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/RO/RI435DI6FWAMT1ASMV13Q8.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8fe6c425aa37b5ff9e5ca482d014a6fce5a3d8e67db7d64b0ee4c46c61f9d6d -size 10887 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset deleted file mode 100644 index 8143a3c..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/H3/LKVIBTDMCHY55WQ256EL4G.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e0816e8ef496103d859be3d973c7d853f00f7260bce7ffff5685b195c458cbd5 -size 11362 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset deleted file mode 100644 index a12faee..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/8/Q6/HKC6TN5D641OZA5H3AZWJ1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:818174d5fce793ae1d554188fe52f4cb12d68e20b304bf5c5b436cd4a8bf8743 -size 10599 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset deleted file mode 100644 index 2a10af2..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/C/BB/TZCBQUFWKQSD5FF0PS3K74.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1eed05c90b48fe622b12d3d501004bf77162167bb73905b348c6b089b2d37e1c -size 11368 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset deleted file mode 100644 index 98dc0d6..0000000 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/KQ/4BQ4FFFEGMY292O2YCZ4VW.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76d42fd534a136121c8ad08f4281be202582e52404b164b71d73c0af2c9be906 -size 11368 From b7d10fb5eb34b132122193d23e49a945ccdcb827 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Thu, 28 Nov 2024 22:49:20 +0100 Subject: [PATCH 09/10] Updated Videos in README.md file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 787a628..aa21fad 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,4 @@ Developed with Unreal Engine 5 -Current Video: https://youtu.be/F_g_AnDyWi8?si=s_k8SToFpJ7jiMQT \ No newline at end of file +Current Video: https://youtu.be/dpt3BC8kkmQ?si=NiVB_Wa6U3lUV-5d \ No newline at end of file From 3a64cf405d09461a94ce5d7ceaf96c97d0c8ab35 Mon Sep 17 00:00:00 2001 From: Kevin Lundell Date: Fri, 29 Nov 2024 19:57:29 +0100 Subject: [PATCH 10/10] Turotial E33 Done --- Content/AI/BP_AI.uasset | 4 ++-- Content/Equipment_System/BPC_EquipmentSystem.uasset | 4 ++-- Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Content/AI/BP_AI.uasset b/Content/AI/BP_AI.uasset index fffd1ca..f239335 100644 --- a/Content/AI/BP_AI.uasset +++ b/Content/AI/BP_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7605b4c877192b57772cbd5d009de37518ff05f27c73f68a56cdf37f4a10aade -size 558017 +oid sha256:68e49a13272514f34802cd341e34a5649cce045deeb6efe6d6add2cebb6be73b +size 564513 diff --git a/Content/Equipment_System/BPC_EquipmentSystem.uasset b/Content/Equipment_System/BPC_EquipmentSystem.uasset index 1517e6f..bd57f8d 100644 --- a/Content/Equipment_System/BPC_EquipmentSystem.uasset +++ b/Content/Equipment_System/BPC_EquipmentSystem.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59dedf35d369ee549c97aeac30f086cd80a346ce58e6c212e8dff5abd4f6cfc0 -size 227677 +oid sha256:10050f1c570c2452f8f53b59de438cc7420c447f9f4b154f1b2cbba454f52f04 +size 229791 diff --git a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset index 73107c2..c3a4a1f 100644 --- a/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset +++ b/Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:742ca81afc98183a28ebe6b6e0aef9ce10b7bc9c9bb58509124562da9c8f8811 -size 1515838 +oid sha256:dc5e850e24288664ce31b2a79fb9b4a3039b8853b86f1b81b7a7104965595d9c +size 1505220