From 364d131b83b16a1f191d82c7d555b996ba68cfce Mon Sep 17 00:00:00 2001 From: James Date: Sun, 28 Nov 2021 23:07:43 +0100 Subject: [PATCH] Implemented Timeline for delays --- Config/DefaultEngine.ini | 3 +++ Content/InteractionCurves/InteractionSecuringBooks.uasset | 3 +++ Content/InteractionCurves/PickupBook.uasset | 3 +++ Content/MainLevels/TheLibrary.umap | 4 ++-- Content/MainLevels/TheLibrary_BuiltData.uasset | 4 ++-- Content/Materials/Book/CoverImages/BambooForestOfTheLoss.png | 3 +++ .../Materials/Book/CoverImages/BambooForestOfTheLoss.uasset | 3 +++ Content/Materials/Book/CoverImages/MasterCover.uasset | 4 ++-- Content/Materials/Book/Materials/MasterBookColor.uasset | 4 ++-- Content/UI/Ingame/InteractionTimer.uasset | 3 +++ Content/blueprints/BPBookShelf.uasset | 4 ++-- Content/blueprints/BP_CollectableBook.uasset | 4 ++-- Content/blueprints/BP_Dungeon.uasset | 4 ++-- Content/blueprints/BP_Maincharacter.uasset | 4 ++-- Content/blueprints/BP_SpawnHook.uasset | 4 ++-- Content/blueprints/Hidingplace.uasset | 4 ++-- Content/blueprints/INT_Interact.uasset | 3 --- Content/blueprints/Interfaces/BPI_EndInteraction.uasset | 3 +++ Content/blueprints/Interfaces/BPI_StartInteraction.uasset | 3 +++ Content/models/SpawnHook.uasset | 4 ++-- Content/models/bookshelf.uasset | 4 ++-- 21 files changed, 48 insertions(+), 27 deletions(-) create mode 100644 Content/InteractionCurves/InteractionSecuringBooks.uasset create mode 100644 Content/InteractionCurves/PickupBook.uasset create mode 100644 Content/Materials/Book/CoverImages/BambooForestOfTheLoss.png create mode 100644 Content/Materials/Book/CoverImages/BambooForestOfTheLoss.uasset create mode 100644 Content/UI/Ingame/InteractionTimer.uasset delete mode 100644 Content/blueprints/INT_Interact.uasset create mode 100644 Content/blueprints/Interfaces/BPI_EndInteraction.uasset create mode 100644 Content/blueprints/Interfaces/BPI_StartInteraction.uasset diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 2e56ce1..c4b8493 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -17,3 +17,6 @@ AppliedDefaultGraphicsPerformance=Maximum [/Script/LuminRuntimeSettings.LuminRuntimeSettings] IconPortalPath=(Path="") +[/Script/Engine.RendererSettings] +r.DBuffer=True + diff --git a/Content/InteractionCurves/InteractionSecuringBooks.uasset b/Content/InteractionCurves/InteractionSecuringBooks.uasset new file mode 100644 index 0000000..bad262a --- /dev/null +++ b/Content/InteractionCurves/InteractionSecuringBooks.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981c6718146b1c80c60f26815e1ce28c8eca205565e152c63dceefd2e33908ab +size 1769 diff --git a/Content/InteractionCurves/PickupBook.uasset b/Content/InteractionCurves/PickupBook.uasset new file mode 100644 index 0000000..99e0d25 --- /dev/null +++ b/Content/InteractionCurves/PickupBook.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d94ba4ce0f78decc297d1967fd5fd62b651b8d136b94056ac8b3f8fe29b58ab +size 1713 diff --git a/Content/MainLevels/TheLibrary.umap b/Content/MainLevels/TheLibrary.umap index 4dbd423..2402c72 100644 --- a/Content/MainLevels/TheLibrary.umap +++ b/Content/MainLevels/TheLibrary.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2baccb24f59f6140560c3f287ff0d799c9b1ac94437065bb3bcbd75a899b64c4 -size 32357 +oid sha256:ef21fe324cf6acb70834c099ff2fd9b70a12415ece65dbadecf975fa1a31b9e1 +size 39879 diff --git a/Content/MainLevels/TheLibrary_BuiltData.uasset b/Content/MainLevels/TheLibrary_BuiltData.uasset index a664d58..cc33e84 100644 --- a/Content/MainLevels/TheLibrary_BuiltData.uasset +++ b/Content/MainLevels/TheLibrary_BuiltData.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95beea2043ded5e90624c5e48d4c6ab04fd6edb2ff08bb328cdca1baefd24aa0 -size 36262 +oid sha256:cff11d1ee4c36b6bcac3708ecb8a8c501bf49bfb6bd64096247bf685f43e9a57 +size 36279 diff --git a/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.png b/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.png new file mode 100644 index 0000000..480b516 --- /dev/null +++ b/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a606a4dae0bb43989c1c2687192aad94a52f58a3cc0f87f0a0ce580b10c6cc4c +size 834103 diff --git a/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.uasset b/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.uasset new file mode 100644 index 0000000..5168a93 --- /dev/null +++ b/Content/Materials/Book/CoverImages/BambooForestOfTheLoss.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa23a79cfbee5aef5b7ad352892546b84b7ecf73c211f2d2c4cc27bf202d099b +size 1064378 diff --git a/Content/Materials/Book/CoverImages/MasterCover.uasset b/Content/Materials/Book/CoverImages/MasterCover.uasset index 3895625..75b3a1d 100644 --- a/Content/Materials/Book/CoverImages/MasterCover.uasset +++ b/Content/Materials/Book/CoverImages/MasterCover.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce52156dc3051eaec3e885f02008daa86a1a9e2edf679790d1507f41f5b3f164 -size 115586 +oid sha256:fb20390237b1c7bb06b9986d70f2b26729cbf4b31acd324c2ba199295531490a +size 139236 diff --git a/Content/Materials/Book/Materials/MasterBookColor.uasset b/Content/Materials/Book/Materials/MasterBookColor.uasset index 2116b37..aff87fd 100644 --- a/Content/Materials/Book/Materials/MasterBookColor.uasset +++ b/Content/Materials/Book/Materials/MasterBookColor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ccee9742f1f4da3a42004d5be94c8a20b4a8c7a4944caa20edc11ca3ade973b -size 129029 +oid sha256:6c8c0d5cf4977c8789b3ed5c7e4c9a0c266f727a90330035a836bf9891b7c1ec +size 129139 diff --git a/Content/UI/Ingame/InteractionTimer.uasset b/Content/UI/Ingame/InteractionTimer.uasset new file mode 100644 index 0000000..4c33876 --- /dev/null +++ b/Content/UI/Ingame/InteractionTimer.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7e97637b341ebce90c393f4da08e4f616b10e79cf83ff3dac6305279edb15d +size 38615 diff --git a/Content/blueprints/BPBookShelf.uasset b/Content/blueprints/BPBookShelf.uasset index 6c8ef53..3112287 100644 --- a/Content/blueprints/BPBookShelf.uasset +++ b/Content/blueprints/BPBookShelf.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0c88377b46c72fb1e9ae843d26e2e4d08f16d84461ada0533b5fc7a6f61ea59 -size 325999 +oid sha256:7adece1b1031787b41adb952fe62b20419df2aee4877e8c94b08596021e6ae63 +size 326908 diff --git a/Content/blueprints/BP_CollectableBook.uasset b/Content/blueprints/BP_CollectableBook.uasset index 28d14ab..8e41330 100644 --- a/Content/blueprints/BP_CollectableBook.uasset +++ b/Content/blueprints/BP_CollectableBook.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf1d1448264e49ef6d0b518915e3f3352474647aaac8f5e11463e95eb3d82197 -size 220120 +oid sha256:d7d77de12e37293c9e5f2607d4afb12e39b630b3960bb931c3401e395c4db32f +size 362927 diff --git a/Content/blueprints/BP_Dungeon.uasset b/Content/blueprints/BP_Dungeon.uasset index adb08f3..4ee2d4f 100644 --- a/Content/blueprints/BP_Dungeon.uasset +++ b/Content/blueprints/BP_Dungeon.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1fad176efc9ec7879946dbb94a06bff70dbda18dcb1bc6bd22488eacb29e1f51 -size 173367 +oid sha256:0aaa028091398a48bc623394871dc67bf1985828d5cbbe513b8d5272fe9eb221 +size 165205 diff --git a/Content/blueprints/BP_Maincharacter.uasset b/Content/blueprints/BP_Maincharacter.uasset index 928013a..73f9aa3 100644 --- a/Content/blueprints/BP_Maincharacter.uasset +++ b/Content/blueprints/BP_Maincharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:761af1760164898c9b649e553fe2321e0ab82788b3da5e1233dc97290cbc6bf3 -size 478011 +oid sha256:7938b455e14f5694f52e886265f87474286e96e1dd19ef1cc99d2b362359d3d9 +size 601885 diff --git a/Content/blueprints/BP_SpawnHook.uasset b/Content/blueprints/BP_SpawnHook.uasset index f57f900..81567bb 100644 --- a/Content/blueprints/BP_SpawnHook.uasset +++ b/Content/blueprints/BP_SpawnHook.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a335fb6b5a5777042cc9c7660ffa76cae5c4f63502262e22c4d8adcfc82c5535 -size 114270 +oid sha256:6069cfe4ee5ea40751a5cd0615fd5873fc3c9bb0f34e4b84fa210d8f85098907 +size 198507 diff --git a/Content/blueprints/Hidingplace.uasset b/Content/blueprints/Hidingplace.uasset index 5dd8bbe..a5131dc 100644 --- a/Content/blueprints/Hidingplace.uasset +++ b/Content/blueprints/Hidingplace.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b4c576dca9832dfdaf4b158800d131ae30ff6d915a94d4e35a8ed6e87201e83 -size 175601 +oid sha256:3fccfd320b50324a5da2f2c261828e60d4f391e09d0bb99572f7e7200d889ac6 +size 175271 diff --git a/Content/blueprints/INT_Interact.uasset b/Content/blueprints/INT_Interact.uasset deleted file mode 100644 index d29b39b..0000000 --- a/Content/blueprints/INT_Interact.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d0d6439fb7d6e684468b256eba698e3aeee65ee76d522c0b8e597f1c52cbedc -size 8928 diff --git a/Content/blueprints/Interfaces/BPI_EndInteraction.uasset b/Content/blueprints/Interfaces/BPI_EndInteraction.uasset new file mode 100644 index 0000000..1b62994 --- /dev/null +++ b/Content/blueprints/Interfaces/BPI_EndInteraction.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ba1ab04be0a6c05d59de22d459134c81ca45d47f8e117f20808a4d760bb493 +size 9015 diff --git a/Content/blueprints/Interfaces/BPI_StartInteraction.uasset b/Content/blueprints/Interfaces/BPI_StartInteraction.uasset new file mode 100644 index 0000000..c3c237d --- /dev/null +++ b/Content/blueprints/Interfaces/BPI_StartInteraction.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0647d818d2cc4e873069ad98b5a2beed16a17d9cbbf6dca523a0380baac958e7 +size 9198 diff --git a/Content/models/SpawnHook.uasset b/Content/models/SpawnHook.uasset index d42b6eb..706183c 100644 --- a/Content/models/SpawnHook.uasset +++ b/Content/models/SpawnHook.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:443ab67fefc4579d28b8742757431ca281c47885465b9d80b64eb5f11ec19bd7 -size 99769 +oid sha256:d82b78ed6cc3c70059cc6ef2346988d949609817826c62874cec7d6922f4fccd +size 99474 diff --git a/Content/models/bookshelf.uasset b/Content/models/bookshelf.uasset index 14c170f..9b55d69 100644 --- a/Content/models/bookshelf.uasset +++ b/Content/models/bookshelf.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5872e28486398360a6c244be3e5b2cb6d832a4b6a1c8a630090c8f54dc0be7f7 -size 112209 +oid sha256:c41ba83d7ea16c7eaf49db57d9c06b970f9e6a6d3a66ea6c298d8e7ccb97a88f +size 112157