From 1c3997f3975bf00226de011fd906393368a9b820 Mon Sep 17 00:00:00 2001 From: Kyle Austad Date: Fri, 4 Oct 2024 12:04:16 -0500 Subject: [PATCH] I think its finished?? --- Content/ModularShipSystem/Blueprints/BPFL_ShipSystem.uasset | 4 ++-- Content/ModularShipSystem/Blueprints/BP_AttachActor.uasset | 4 ++-- Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset | 4 ++-- .../Blueprints/Interfaces/BPI_ShipCore.uasset | 4 ++-- .../ModularShipSystem/Blueprints/Interfaces/BPI_Shop.uasset | 3 +++ .../Blueprints/Interfaces/BPI_ShopUI.uasset | 3 +++ .../Demo/Blueprints/BP_BaseSpaceStation.uasset | 4 ++-- Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset | 4 ++-- Content/ModularShipSystem/Demo/Widgets/WBP_BaseUI.uasset | 4 ++-- .../ModularShipSystem/Demo/Widgets/WBP_DamageTypes.uasset | 4 ++-- .../Demo/Widgets/WBP_EquipSlotSingle.uasset | 4 ++-- .../Demo/Widgets/WBP_OutfittingMenu.uasset | 4 ++-- .../ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset | 4 ++-- .../Maps/ThirdPersonMap/5/QA/N3E1BDU8N83QS726O7XVKU.uasset | 2 +- README.md | 6 +++--- 15 files changed, 32 insertions(+), 26 deletions(-) create mode 100644 Content/ModularShipSystem/Blueprints/Interfaces/BPI_Shop.uasset create mode 100644 Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShopUI.uasset diff --git a/Content/ModularShipSystem/Blueprints/BPFL_ShipSystem.uasset b/Content/ModularShipSystem/Blueprints/BPFL_ShipSystem.uasset index 1de0516..259cc38 100644 --- a/Content/ModularShipSystem/Blueprints/BPFL_ShipSystem.uasset +++ b/Content/ModularShipSystem/Blueprints/BPFL_ShipSystem.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7916d6006b6b33cb8bb7b94c98ff6c7efcf19c715e880158d3d6ba0499255972 -size 231474 +oid sha256:8b28d12fa5b3e8481ac5937643a12daf9b4b25d6439c9f96e1cd7aac71d4ad8c +size 232227 diff --git a/Content/ModularShipSystem/Blueprints/BP_AttachActor.uasset b/Content/ModularShipSystem/Blueprints/BP_AttachActor.uasset index 84fe298..d5a8c7c 100644 --- a/Content/ModularShipSystem/Blueprints/BP_AttachActor.uasset +++ b/Content/ModularShipSystem/Blueprints/BP_AttachActor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82dce2021bc5c0926628fdfaf9ee69648be755d692ea7b8172bb3e35263bcb5c -size 89183 +oid sha256:7af909dff8105bf3b6ca3d3c1e77a371fb1cc8019b3244a5dae4152a14eefe81 +size 81969 diff --git a/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset b/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset index f74ab59..0d4acc5 100644 --- a/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset +++ b/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd961f7c6097f0f670a883dd3c6e0de1bc2e1342e7f7ebbd05daa65f3334b329 -size 197053 +oid sha256:8a4c9e2a65aae688355eaf75adee3c9aa6f0ceff98519bb80efc81a0d77328a0 +size 201457 diff --git a/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset index 89208b9..029f313 100644 --- a/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset +++ b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5fe42e8279e2e94de085f72a20bd20fa928854d8e1a62983486184738742b5e1 -size 82572 +oid sha256:c28476e5e8133ffe54f9b6dfb862529bd32fe355b558ad50f91954fed09c3770 +size 52773 diff --git a/Content/ModularShipSystem/Blueprints/Interfaces/BPI_Shop.uasset b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_Shop.uasset new file mode 100644 index 0000000..6397d18 --- /dev/null +++ b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_Shop.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48aa989ea88294a47bb328199d30e4d15b823617272c4e568d5aef2c60573370 +size 18938 diff --git a/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShopUI.uasset b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShopUI.uasset new file mode 100644 index 0000000..1b8aa06 --- /dev/null +++ b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShopUI.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5af85b55d2b041cb25282cfa182645ed84542052d9556f65b6e264e2fe7ee2 +size 30683 diff --git a/Content/ModularShipSystem/Demo/Blueprints/BP_BaseSpaceStation.uasset b/Content/ModularShipSystem/Demo/Blueprints/BP_BaseSpaceStation.uasset index 3cf6585..ea29200 100644 --- a/Content/ModularShipSystem/Demo/Blueprints/BP_BaseSpaceStation.uasset +++ b/Content/ModularShipSystem/Demo/Blueprints/BP_BaseSpaceStation.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef5ab1b0ee5bd2f745f7aeccc4cfd13c63a5ce8280ee9cd0fd989bcff8338090 -size 730599 +oid sha256:f444bea81f674ae12566cc057846aa22890493584cb9e0bb1cee589bdffdd91c +size 700946 diff --git a/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset b/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset index 8df909f..2aa12ea 100644 --- a/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset +++ b/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ade42e0fb98d8e6f26949ae466e3534a335ed4ef210dc0f4ff65b0fb20c88245 -size 1438088 +oid sha256:f0c151e3c1c1a05394bf69589d322dc2b589b88036c43202c0c38e08ca0ea1e0 +size 1366755 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_BaseUI.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_BaseUI.uasset index e6653fb..4f33081 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_BaseUI.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_BaseUI.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46253d859eebfeeb5e9bc9b56d6babd597c592994c2e8a1a1ab9d2f544001deb -size 80308 +oid sha256:4bdb78c7c365af0e6ce665863789384698cfb877935af67fa4a493e36de95437 +size 503507 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_DamageTypes.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_DamageTypes.uasset index 5b51c4b..47e2d37 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_DamageTypes.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_DamageTypes.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9d4e809014672966d894e72e7dbee228fa89e5dd114afe388295ce83cd219be -size 83949 +oid sha256:0d5ddb87ca1fc6a57fde6eece1bb9f22c78d09e85cd9d6ea05dd8a95e1816b11 +size 85193 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_EquipSlotSingle.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_EquipSlotSingle.uasset index ab18c2e..797a0ba 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_EquipSlotSingle.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_EquipSlotSingle.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c9a06f5dc92bc3e8b2e0e543fcc396c19a4cdf66f55d7acad7f5cd67ba44521 -size 887178 +oid sha256:d156c08b5a7dda510de0daef5bf18945cc8ec7e80c141e46d0d3e900a532b3ac +size 874741 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_OutfittingMenu.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_OutfittingMenu.uasset index cb72a4e..39a5538 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_OutfittingMenu.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_OutfittingMenu.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c356b9800b30cd4dda02c25e4dc969570c80b796c44d1fa262cd1ccfa51ee9f7 -size 1007690 +oid sha256:61b6d860b973fd38388c33dfcbc068202bb38fe8b4b6585bb6e583fa6c4d3040 +size 1019128 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset index f28c5d6..d62601c 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec1dfcebba1f3e88fe11555431598a02ab4bd3a42bc8614aa91b9ab74323a483 -size 2152153 +oid sha256:00c9ac895e10921382491b856a945575e538bb6dfb42a74d149ae948755a2309 +size 2196249 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/QA/N3E1BDU8N83QS726O7XVKU.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/QA/N3E1BDU8N83QS726O7XVKU.uasset index 1ff00ce..ddd5141 100644 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/QA/N3E1BDU8N83QS726O7XVKU.uasset +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/5/QA/N3E1BDU8N83QS726O7XVKU.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f36cf49f2d2170754ea80b53baffa8c0e8551343453a7178ae8ec2669dbd0f2d +oid sha256:ce1cc49a580f7af795f8ac2c4219f72ea4052d135251d5d7fecaf88a5bdd72dd size 30086 diff --git a/README.md b/README.md index 0e66109..ee1c077 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ ## Things to finish everything up - [ ] Documentation -- [ ] Clean up Blueprint Interfaces and functions and comment nodes -- [ ] Create UI to display player ship stats -- [ ] Implement power draw statistic? +- [X] Clean up Blueprint Interfaces and functions and comment nodes +- [X] Create UI to display player ship stats +- [X] ~~Implement power draw statistic?~~ Can show this in docs as an example of extending functionality ## Systems to implement