From 4ce5dafff0d2c738539d5969206289ba638345a2 Mon Sep 17 00:00:00 2001 From: Simeon Wallrath Date: Wed, 8 Jan 2025 09:45:58 +0100 Subject: [PATCH 1/4] Fixed OnLinkReached Issue It seems like I added the event bind by accident, deleted the bind, which left a custom Event and not the intenden ReachEvent! --- .../Content/Gilbert/NewFolder/NavLink_AI.uasset | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset index 0ed2617..807c218 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92662b633fd6379bf3d9f9b4c3cd5ce1191644aae3c590b0cabb9fba777b79a7 -size 54762 +oid sha256:5cc3f9cd81d68bb0c847c2b701f56ef64c79f56bf4741ef16d10f78f714be459 +size 33434 From dc4b8969d7f715a7b08531c72baf68788d940bde Mon Sep 17 00:00:00 2001 From: Simeon Wallrath Date: Wed, 8 Jan 2025 15:26:21 +0100 Subject: [PATCH 2/4] Reworked Character Following Spline,. Actor Following didnt work as desired Thanks to Great Ocean Games Tutorial https://www.youtube.com/watch?v=UIF1PcmZkGA --- .../Content/Characters/BPI_Character.uasset | 3 +++ .../Content/Characters/BP_BaseCharacter.uasset | 3 +++ .../Content/Characters/CustomAIController.uasset | 3 +++ .../Content/Gilbert/BP_GilbertThirdPerson.uasset | 4 ++-- .../Content/Gilbert/NewFolder/NavLink_AI.uasset | 4 ++-- .../Content/Gilbert/TestSpline.uasset | 4 ++-- .../Content/VRE/ExampleMap/MotionControllerMap.umap | 4 ++-- 7 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 VIRTUOS_ExpansionPluginTests/Content/Characters/BPI_Character.uasset create mode 100644 VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset create mode 100644 VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/BPI_Character.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/BPI_Character.uasset new file mode 100644 index 0000000..44c4b3d --- /dev/null +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/BPI_Character.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b196c7c75d1bb4a2b4cf850860a70a5ceb50e59868d35fb203f1e7482e45ca +size 10561 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset new file mode 100644 index 0000000..7944b5f --- /dev/null +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d572be6141a5da8dcbe679b220e8800ce0b053685a4602a3734dce4539876f93 +size 54314 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset new file mode 100644 index 0000000..f288c13 --- /dev/null +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd0b47e5b43cfc5f5db9a0db4535bf7bb37efd57c850ba88c763b0f040c9a5f +size 182868 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset index 7021f58..4522168 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a612575b0621448b7c2881585722106930d581deca2fc592568d13929f3a21d2 -size 290756 +oid sha256:c3f647ea19f3da7ef254a671545723946150d2b01f75d9cf5f4cbdaff75659e7 +size 287540 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset index 807c218..51d8d54 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cc3f9cd81d68bb0c847c2b701f56ef64c79f56bf4741ef16d10f78f714be459 -size 33434 +oid sha256:2fb751d81c49ccd697af8f3f02b9417da374a1cf99b9b5906cffacfbd4ea4ce7 +size 29400 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset index 5c3e6ab..1a6a0a8 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9f7d2547c22a9a7e6871cf615f9caa364b0af48dcd086921a6366e4bd148c73 -size 102016 +oid sha256:b4d603f1276039f5efbf3d37212bef1dc23d64d9f064d37bfba926515222c889 +size 127869 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap index c06ebec..1b3cd0f 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff1adf5eecf4704125da0b957203c76996f38cdb5bf91b846e8453581874bd3a -size 1497254 +oid sha256:0a63c201091c247be5b60fca787a2d4cbe4775cd48e450e29bade7bc04373d7c +size 1503124 From 5d45b12bc1104e03b8173eb851004b042286480f Mon Sep 17 00:00:00 2001 From: Simeon Wallrath Date: Wed, 8 Jan 2025 21:51:16 +0100 Subject: [PATCH 3/4] Spline Following is still a pain but should work now, needs cleanup --- .../Content/Characters/BP_BaseCharacter.uasset | 4 ++-- .../Content/Characters/CustomAIController.uasset | 4 ++-- .../Content/Gilbert/BP_GilbertThirdPerson.uasset | 4 ++-- .../Content/Gilbert/NewFolder/BS_Movement.uasset | 3 +++ .../Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset | 4 ++-- .../Content/Gilbert/NewFolder/Movement.uasset | 4 ++-- .../Content/Gilbert/NewFolder/NavLink_AI.uasset | 4 ++-- .../Content/Gilbert/NewFolder/Test/GilbertMesh.uasset | 3 --- .../Gilbert/NewFolder/Test/GilbertMesh_PhysicsAsset.uasset | 3 --- .../Gilbert/NewFolder/Test/GilbertMesh_Skeleton.uasset | 3 --- .../Content/Gilbert/NewFolder/Test/gloss.uasset | 3 --- .../Content/Gilbert/NewFolder/Test/normal.uasset | 3 --- .../Content/Gilbert/NewFolder/Test2/GilbertMesh.uasset | 3 --- .../Content/Gilbert/NewFolder/Test2/gloss.uasset | 3 --- .../Content/Gilbert/NewFolder/Test2/normal.uasset | 3 --- .../Content/Gilbert/SplineActor.uasset | 4 ++-- .../Content/Gilbert/TestSpline.uasset | 4 ++-- .../Content/VRE/ExampleMap/MotionControllerMap.umap | 4 ++-- 18 files changed, 21 insertions(+), 42 deletions(-) create mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/BS_Movement.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_PhysicsAsset.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_Skeleton.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/gloss.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/normal.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/GilbertMesh.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/gloss.uasset delete mode 100644 VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/normal.uasset diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset index 7944b5f..238e32e 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d572be6141a5da8dcbe679b220e8800ce0b053685a4602a3734dce4539876f93 -size 54314 +oid sha256:be1e55b29625cb57e0a27741cea3adfaa020357641ec521a052c5f5ad2992fbd +size 72919 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset index f288c13..d8a6b71 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:abd0b47e5b43cfc5f5db9a0db4535bf7bb37efd57c850ba88c763b0f040c9a5f -size 182868 +oid sha256:2140048bb90d5908e28edbe13ec9a25fd6ef71ec1b2c6ef2921997d059499b44 +size 224936 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset index 4522168..afbbbab 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3f647ea19f3da7ef254a671545723946150d2b01f75d9cf5f4cbdaff75659e7 -size 287540 +oid sha256:0c5196c6df3d904666b7c4a16408bf251274164bd152ee60df3af96b0b2fa34f +size 287538 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/BS_Movement.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/BS_Movement.uasset new file mode 100644 index 0000000..54e7093 --- /dev/null +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/BS_Movement.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6299bdc2362dec6435103e8e6c0be3d0e4f47a9636969d241e3edbff73ec0ebf +size 19349 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset index dfd2a13..2fd2007 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9eb985c3a8aa6102f0c7febed7401d94dcda97e5e7540279d0e1292eb989f54 -size 151894 +oid sha256:2b3a0f31c40a25990516665049f2a711d1e9ec22d8146ab8175660728e44b7ee +size 151878 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Movement.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Movement.uasset index a0b3129..d0a277b 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Movement.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Movement.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:184008a4765d21c8320e16e7a782ab327a753a9012a2c9f0b24024e7fa10cafb -size 19334 +oid sha256:f2f20e34330d66c810718972f42e0577bf501a3ea309b1ae39b767faa59afc60 +size 1508 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset index 51d8d54..ca89cf4 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fb751d81c49ccd697af8f3f02b9417da374a1cf99b9b5906cffacfbd4ea4ce7 -size 29400 +oid sha256:b84d96868c5871080d95b69b3a045c97e7bc845e73bba3e183ad49e44df9de92 +size 35733 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh.uasset deleted file mode 100644 index 661d162..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe8e039df3dc804fba84a1b97fda77d757f934faf6c2597dd702e36c2c56f5f7 -size 2421426 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_PhysicsAsset.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_PhysicsAsset.uasset deleted file mode 100644 index 351ccc9..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_PhysicsAsset.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00ee9d5d1fb51733bc366d24e89bed849f379632b6085f93992f9ffb5c00023a -size 9616 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_Skeleton.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_Skeleton.uasset deleted file mode 100644 index 202998c..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/GilbertMesh_Skeleton.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c82e5af88665cd1332d3bf4980e69cf0b8478f05efeb66130491aa5d24e5871 -size 15732 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/gloss.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/gloss.uasset deleted file mode 100644 index b9771c2..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:291e9eb1f792a4109591604ec03a4a9be58b151d0c6805fc62286db0d69193d9 -size 1483604 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/normal.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/normal.uasset deleted file mode 100644 index e528df2..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test/normal.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc4885d4e72e4a5111c3000db295e6ae3377bcc440bf1da6979051faa6ecb8e1 -size 4511456 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/GilbertMesh.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/GilbertMesh.uasset deleted file mode 100644 index fc4f423..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/GilbertMesh.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cfba664c2bc544d54548c4c93d9cac4507595f2d4156d089e5255a1511b15afc -size 1519 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/gloss.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/gloss.uasset deleted file mode 100644 index 8721835..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:42b21b03c4dc4af3f89ae18601c14cce69301104ee08160c4ec7881c2d02043f -size 1483613 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/normal.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/normal.uasset deleted file mode 100644 index 3e50d0d..0000000 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Test2/normal.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:62281b9ed208193326959c81729835e3935a21738844a709c214812e0ef85112 -size 4511465 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/SplineActor.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/SplineActor.uasset index 51c4c8a..8b9ff30 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/SplineActor.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/SplineActor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5595e6937bfd8cd942aecb2da577c5d7c1fee4c923268518ce3acfbb77a8dd8f -size 28722 +oid sha256:6a23a86cb12381a8a14476d2997784b228b9b8b78bbf94efe8d1aae3a91a1d4e +size 29685 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset index 1a6a0a8..8cabad9 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4d603f1276039f5efbf3d37212bef1dc23d64d9f064d37bfba926515222c889 -size 127869 +oid sha256:ba1bd7e9dc9f24920f71124957b84b44041d596e26b2ba7b63a4643d9b0bb36e +size 128832 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap index 1b3cd0f..8b91cf0 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a63c201091c247be5b60fca787a2d4cbe4775cd48e450e29bade7bc04373d7c -size 1503124 +oid sha256:94e8a54f70005613d1f45b97b18fe88ced53b0ba6dd52307b2aaf734d8356fb0 +size 1500425 From 1471bc46d4252a3207d38794cb299310181f6e2f Mon Sep 17 00:00:00 2001 From: Simeon Wallrath Date: Sun, 12 Jan 2025 23:38:46 +0100 Subject: [PATCH 4/4] Misc Changes on GlibertAnim and Door --- VIRTUOS_ExpansionPluginTests/Config/DefaultEngine.ini | 2 +- .../Content/Characters/BP_BaseCharacter.uasset | 4 ++-- .../Content/Characters/CustomAIController.uasset | 4 ++-- .../Content/Furniture/Doors/NewBlueprint.uasset | 4 ++-- .../Content/Gilbert/BP_GilbertThirdPerson.uasset | 4 ++-- .../NewFolder/Animations/Test/Gilbert_Actions__Jump.uasset | 2 +- .../Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset | 4 ++-- .../Content/Gilbert/NewFolder/NavLink_AI.uasset | 2 +- .../Content/Gilbert/TestSpline.uasset | 4 ++-- .../Content/VRE/ExampleMap/MotionControllerMap.umap | 4 ++-- .../Grippables/Misc/Examples/Button/Button_Mat_Inst.uasset | 4 ++-- .../Content/VRE/Grippables/Misc/Examples/Button/Green.uasset | 4 ++-- .../VRE/Grippables/Misc/Examples/Door/DoorActor.uasset | 4 ++-- .../VRE/Grippables/Misc/Examples/Door/DoorActor1.uasset | 4 ++-- .../Content/VRE/Grippables/Misc/Examples/Door/DoorKey.uasset | 4 ++-- 15 files changed, 27 insertions(+), 27 deletions(-) diff --git a/VIRTUOS_ExpansionPluginTests/Config/DefaultEngine.ini b/VIRTUOS_ExpansionPluginTests/Config/DefaultEngine.ini index 5a41224..1b8de07 100644 --- a/VIRTUOS_ExpansionPluginTests/Config/DefaultEngine.ini +++ b/VIRTUOS_ExpansionPluginTests/Config/DefaultEngine.ini @@ -167,7 +167,7 @@ bSendAnonymousUsageDataToEpic=False +Profiles=(Name="Vehicle",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Vehicle",CustomResponses=,HelpMessage="Vehicle object that blocks Vehicle, WorldStatic, and WorldDynamic. All other channels will be set to default.") +Profiles=(Name="UI",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility"),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ") +Profiles=(Name="WaterBodyCollision",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="",CustomResponses=((Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="Default Water Collision Profile (Created by Water Plugin)") -+DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,DefaultResponse=ECR_Ignore,bTraceType=True,bStaticObject=False,Name="VRTraceChannel") ++DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,DefaultResponse=ECR_Overlap,bTraceType=True,bStaticObject=False,Name="VRTraceChannel") +DefaultChannelResponses=(Channel=ECC_GameTraceChannel2,DefaultResponse=ECR_Ignore,bTraceType=True,bStaticObject=False,Name="FloorTrace") +DefaultChannelResponses=(Channel=ECC_GameTraceChannel3,DefaultResponse=ECR_Ignore,bTraceType=False,bStaticObject=False,Name="PawnWalking") +DefaultChannelResponses=(Channel=ECC_GameTraceChannel4,DefaultResponse=ECR_Ignore,bTraceType=True,bStaticObject=False,Name="TossableTrace") diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset index 238e32e..da639c9 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/BP_BaseCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be1e55b29625cb57e0a27741cea3adfaa020357641ec521a052c5f5ad2992fbd -size 72919 +oid sha256:beafdbd6bae883b474789d95470df656022da58dddf4091a996c4213e963863f +size 75288 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset index d8a6b71..6336d3f 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Characters/CustomAIController.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2140048bb90d5908e28edbe13ec9a25fd6ef71ec1b2c6ef2921997d059499b44 -size 224936 +oid sha256:a3c61d942991dca686c53896870aec0aae4b8a2c63c06b892bdb11a3c7168ed7 +size 197173 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Furniture/Doors/NewBlueprint.uasset b/VIRTUOS_ExpansionPluginTests/Content/Furniture/Doors/NewBlueprint.uasset index 75f9ff7..0c635fd 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Furniture/Doors/NewBlueprint.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Furniture/Doors/NewBlueprint.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb1cfa5fc88c26366c5ad6642a804fdeb11117a84f1677175853ede0d385efa3 -size 226126 +oid sha256:34b78ed7ad10a58456e843c01f9ca8b7ce04a4b9900b6a7cfd2be99dc449115b +size 239552 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset index afbbbab..c893457 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/BP_GilbertThirdPerson.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c5196c6df3d904666b7c4a16408bf251274164bd152ee60df3af96b0b2fa34f -size 287538 +oid sha256:eac22c7e10452ad26230e22d028846cffa61616fddae7ceecf7ca6fc0116348c +size 143061 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Animations/Test/Gilbert_Actions__Jump.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Animations/Test/Gilbert_Actions__Jump.uasset index 54d8f28..eaa25ae 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Animations/Test/Gilbert_Actions__Jump.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Animations/Test/Gilbert_Actions__Jump.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9bffea18d41e2422a2a8f294acc4c48b2796448f09454f4919a4aaedc14802b +oid sha256:2fa040771db41004c08f3a4054e8c5c86beeec8251464e4a827e069f8f14007d size 137576 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset index 2fd2007..c579854 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/Gilbert_Skeleton_AnimBlueprint.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b3a0f31c40a25990516665049f2a711d1e9ec22d8146ab8175660728e44b7ee -size 151878 +oid sha256:4d0259a648718baa3c55d3d7b14f13a7e5d8629159c6eb061758f6e21bbb4b71 +size 231397 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset index ca89cf4..df57e9e 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/NewFolder/NavLink_AI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b84d96868c5871080d95b69b3a045c97e7bc845e73bba3e183ad49e44df9de92 +oid sha256:3a31d4007d694d14fc2469a9f7b070ea13897514f26bb31bdf50540faf096a87 size 35733 diff --git a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset index 8cabad9..eac99d1 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/Gilbert/TestSpline.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba1bd7e9dc9f24920f71124957b84b44041d596e26b2ba7b63a4643d9b0bb36e -size 128832 +oid sha256:96ab2b7265644260f8c5476d8d64fef3977b82487e3bf10dff3b459d878499ac +size 29321 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap index 8b91cf0..c7dfc74 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/ExampleMap/MotionControllerMap.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94e8a54f70005613d1f45b97b18fe88ced53b0ba6dd52307b2aaf734d8356fb0 -size 1500425 +oid sha256:c2e1335cfe59cb1e045b97c6252662df0dc9787f1d94777d2c1b1d7ae3c4f881 +size 1514380 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Button_Mat_Inst.uasset b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Button_Mat_Inst.uasset index e2ed19e..74ae1e8 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Button_Mat_Inst.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Button_Mat_Inst.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80150b19456873f2b10d0e4b9b989640bc09f71baeead650a50f3beb306d875b -size 66333 +oid sha256:cb074a7ece63fd12fbca4cbb84cab2d6c9ab9e2a988a2bc2949047eb402449cc +size 7232 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Green.uasset b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Green.uasset index 8a8d315..d17d6c4 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Green.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Button/Green.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61cd829c1307abb54d7865e377f7ca8f11eb73496809713d1695055985d14a6b -size 17999 +oid sha256:1bb24399fbe2770c0241c275c5a176c66833574906d1941d285cfb90b4f7b173 +size 9982 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor.uasset b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor.uasset index 158a907..6e49353 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cacbbae5202b43317b069da60d7a2fb247a4bf999816b296f4a07c63b14780f3 -size 481009 +oid sha256:12cf02437b66faec6ffca53ba49d578e542de0da647ffb77b26eb2efa2c39f87 +size 481494 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor1.uasset b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor1.uasset index e186522..f7aa806 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor1.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorActor1.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fdb83fd0531219eec9ab61af032610d939f36380ce6236c7548368135af0a4e0 -size 480717 +oid sha256:e7b0094f5935ff92b1f0ea0af45984313d56c5d87e5142fc713d42ff9c70781b +size 480746 diff --git a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorKey.uasset b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorKey.uasset index 696d794..c76b262 100644 --- a/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorKey.uasset +++ b/VIRTUOS_ExpansionPluginTests/Content/VRE/Grippables/Misc/Examples/Door/DoorKey.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00e2b7ebe5483e565299514705089198b9d04fd4a76bed5a9ede8792d62fb0e6 -size 408094 +oid sha256:c7fa2b4551602dd590bc654d7a63f88149892e2c7503a34dc46ff6d0e05f5af1 +size 323803