From 01791291c576c48f2333e65d3acef92ed7fc358a Mon Sep 17 00:00:00 2001 From: Kyle Austad Date: Mon, 23 Sep 2024 16:40:16 -0500 Subject: [PATCH] I think i finished the UI Now i just need to implement purchasing, equipping and stat modification based on equipped components --- .../Blueprints/BP_ShipHUD.uasset | 4 ++-- .../Blueprints/Interfaces/BPI_ShipCore.uasset | 4 ++-- .../DT_WatchtowerStation_CargoBays.uasset | 3 +++ .../DT_WatchtowerStation_EngineUpgrades.uasset | 3 +++ .../DT_WatchtowerStation_HullUpgrades.uasset | 3 +++ ...DT_WatchtowerStation_ModuleCategories.uasset | 3 +++ .../DT_WatchtowerStation_Scanners.uasset | 3 +++ .../DT_WatchtowerStation_Shields.uasset | 3 +++ ..._WatchtowerStation_UpgradesCategories.uasset | 3 +++ .../DT_WatchtowerStation_WeaponUpgrades.uasset | 3 +++ .../Demo/Blueprints/BP_SpaceStation.uasset | 4 ++-- .../Demo/Pawns/BP_BaseShip.uasset | 4 ++-- .../Demo/Widgets/WBP_ModuleCategory.uasset | 3 +++ .../Demo/Widgets/WBP_ModuleSubMenu.uasset | 3 +++ .../Demo/Widgets/WBP_ScannerCapabilities.uasset | 3 +++ .../Demo/Widgets/WBP_ShopInterface.uasset | 4 ++-- .../Demo/Widgets/WBP_ShopItem.uasset | 3 --- .../Demo/Widgets/WBP_ShopItem_CargoBay.uasset | 3 +++ .../Widgets/WBP_ShopItem_EnginesUpgrade.uasset | 3 +++ .../Demo/Widgets/WBP_ShopItem_Hardpoint.uasset | 4 ++-- .../Widgets/WBP_ShopItem_HullUpgrade.uasset | 3 +++ .../Demo/Widgets/WBP_ShopItem_Scanner.uasset | 3 +++ .../Demo/Widgets/WBP_ShopItem_Scanners.uasset | 3 +++ .../Demo/Widgets/WBP_ShopItem_Shields.uasset | 3 +++ .../Widgets/WBP_ShopItem_WeaponUpgrade.uasset | 3 +++ .../Enums/E_ModuleCategories.uasset | 3 +++ .../Enums/E_ScannerCapabilities.uasset | 4 ++-- .../ModularShipSystem/Structs/S_CargoBay.uasset | 3 +++ .../Structs/S_HullUpgradeInformation.uasset | 3 +++ .../Structs/S_ShieldInfo.uasset | 3 +++ .../ShopStructs/S_CargoBayShopInfo.uasset | 3 +++ .../ShopStructs/S_HullUpgradeShopInfo.uasset | 3 +++ .../ShopStructs/S_ModuleCategories.uasset | 3 +++ .../ShopStructs/S_ScannerShopInfo.uasset | 3 +++ .../ShopStructs/S_ShieldsShopInfo.uasset | 3 +++ .../ShopStructs/S_StationShopLists.uasset | 4 ++-- .../3/OP/YLCCW4C4V38C1Q4RGRBAIM.uasset | 4 ++-- README.md | 17 +++++++++-------- 38 files changed, 108 insertions(+), 29 deletions(-) create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_CargoBays.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_EngineUpgrades.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_HullUpgrades.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_ModuleCategories.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Scanners.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Shields.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_UpgradesCategories.uasset create mode 100644 Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_WeaponUpgrades.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ModuleCategory.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ModuleSubMenu.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ScannerCapabilities.uasset delete mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_CargoBay.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_EnginesUpgrade.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_HullUpgrade.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanner.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanners.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Shields.uasset create mode 100644 Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_WeaponUpgrade.uasset create mode 100644 Content/ModularShipSystem/Enums/E_ModuleCategories.uasset create mode 100644 Content/ModularShipSystem/Structs/S_CargoBay.uasset create mode 100644 Content/ModularShipSystem/Structs/S_HullUpgradeInformation.uasset create mode 100644 Content/ModularShipSystem/Structs/S_ShieldInfo.uasset create mode 100644 Content/ModularShipSystem/Structs/ShopStructs/S_CargoBayShopInfo.uasset create mode 100644 Content/ModularShipSystem/Structs/ShopStructs/S_HullUpgradeShopInfo.uasset create mode 100644 Content/ModularShipSystem/Structs/ShopStructs/S_ModuleCategories.uasset create mode 100644 Content/ModularShipSystem/Structs/ShopStructs/S_ScannerShopInfo.uasset create mode 100644 Content/ModularShipSystem/Structs/ShopStructs/S_ShieldsShopInfo.uasset diff --git a/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset b/Content/ModularShipSystem/Blueprints/BP_ShipHUD.uasset index c795ccb..f1cadae 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:d5bb8c5d5a858447f2610d1c9f43e187088abfd6036df697a6fb7c2a1bdaa434 -size 153069 +oid sha256:314db3bb9530f7ba87da4ecd1730b769ef2ef2aa898bdba035835d1c218e0b5f +size 147858 diff --git a/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset b/Content/ModularShipSystem/Blueprints/Interfaces/BPI_ShipCore.uasset index e3f888d..df961e0 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:af09b27c1bb53c6982807ee18a6e61c4f2b51db0b7b5624098db26a3d73ffc26 -size 45216 +oid sha256:4e101c88f2ee54ec1aa254589da5b9e713435c6014e38a35f5321f9ac70898c4 +size 46638 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_CargoBays.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_CargoBays.uasset new file mode 100644 index 0000000..c5c2c1a --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_CargoBays.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a25efae5b7d439545861c74173e29b787d1b8a3d933e345cab1f56ba2f85be +size 7880 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_EngineUpgrades.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_EngineUpgrades.uasset new file mode 100644 index 0000000..d729cfa --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_EngineUpgrades.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ffd853ca43475e563b791e3c9e8f20b35bba993bce351ef4c00a4d4d75ea54 +size 9934 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_HullUpgrades.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_HullUpgrades.uasset new file mode 100644 index 0000000..ce7bcc6 --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_HullUpgrades.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a257cdfea005afde427decd073223a6f82b79e12466ebca1b506227f20421a4 +size 8456 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_ModuleCategories.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_ModuleCategories.uasset new file mode 100644 index 0000000..073eb7c --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_ModuleCategories.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbb3b0f81112bb37924d5e7cfcfc6414fc6ebe4d0e772ce32c4b83d620f2640 +size 6726 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Scanners.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Scanners.uasset new file mode 100644 index 0000000..e096c51 --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Scanners.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c9b74d19a4207b00ab5fb2423ed21720abd94f2329a1ebc977d238fd0e119f +size 8492 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Shields.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Shields.uasset new file mode 100644 index 0000000..b7f6dab --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_Shields.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d14d1202621f1b6f3a73f011f49bd63fd36dcc4c128d4dd77dc980c6b4cca16 +size 6469 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_UpgradesCategories.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_UpgradesCategories.uasset new file mode 100644 index 0000000..7df4377 --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_UpgradesCategories.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf21a0f3c4e58e58f9c85a7b5314b9bdd2906383bbe663de7bd7b8654c2c486 +size 6103 diff --git a/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_WeaponUpgrades.uasset b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_WeaponUpgrades.uasset new file mode 100644 index 0000000..f266530 --- /dev/null +++ b/Content/ModularShipSystem/DataTables/WatchtowerStation_Shop/DT_WatchtowerStation_WeaponUpgrades.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c7e49e10e2ff6969a553057032e4608a93d797fcf1921ff023782339fc95a6 +size 9362 diff --git a/Content/ModularShipSystem/Demo/Blueprints/BP_SpaceStation.uasset b/Content/ModularShipSystem/Demo/Blueprints/BP_SpaceStation.uasset index 5741ec5..bff2ef9 100644 --- a/Content/ModularShipSystem/Demo/Blueprints/BP_SpaceStation.uasset +++ b/Content/ModularShipSystem/Demo/Blueprints/BP_SpaceStation.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e225e4aa7141d5267c1816c7642c0612289b0caef72cb6e365bfd6ee202b224 -size 355679 +oid sha256:b394511dafedeaf2ec6af2a3888a28477265ee3317cdd4c1bb71d53d4f0c959f +size 339532 diff --git a/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset b/Content/ModularShipSystem/Demo/Pawns/BP_BaseShip.uasset index 3c9dd11..98bc9f5 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:52d4d1f6d071f8f96dad1d1e6287bf87e051bb9110bb0ca5a4d1fc6c572b82ef -size 476024 +oid sha256:0f6a6dcfa44dc575580058e5b68091c2767aa6466833e0d72bd232047fee7f67 +size 460444 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleCategory.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleCategory.uasset new file mode 100644 index 0000000..6b8ab20 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleCategory.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42470652a770e340d609a78f3093052541fd663664f05454a06ed468e8c2e71 +size 92359 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleSubMenu.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleSubMenu.uasset new file mode 100644 index 0000000..12deb70 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ModuleSubMenu.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f7d4bda7a43f8a622353a5a0b4f098f58a214003864d66e7795ef982a38f3f +size 61597 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ScannerCapabilities.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ScannerCapabilities.uasset new file mode 100644 index 0000000..043b637 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ScannerCapabilities.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0266f4e997784674d69dbbe52e1ce86cd277449109c297a853b73672375b0c +size 59349 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopInterface.uasset index ed77bc2..39c8526 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:3aad50bf0465d9a602ba440f1116a5c716eb24044a08673c80b6b674c49ad376 -size 292536 +oid sha256:93c309f42e6149720ae20ece17157994fb231e7cec4bf3965c6c4de90d798dd1 +size 677157 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem.uasset deleted file mode 100644 index 88d8001..0000000 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8e8328bbdf76476a1d68382f02d4fe87624e7000e49a976c0003dee2f050057 -size 91168 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_CargoBay.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_CargoBay.uasset new file mode 100644 index 0000000..e6793b1 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_CargoBay.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a2303302d9cb3b915cbcff3a314aff3ecac1863610bd0c6cc25bac6f4bed60 +size 129870 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_EnginesUpgrade.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_EnginesUpgrade.uasset new file mode 100644 index 0000000..d2b50f2 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_EnginesUpgrade.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211a6fab71fe2bed128b6f22f747d305b580ab247be690fbbd6a586a90c186df +size 157273 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Hardpoint.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Hardpoint.uasset index 4450a8f..63a57b4 100644 --- a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Hardpoint.uasset +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Hardpoint.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc37686d9b8af8ed3e3898112291403f77aacdd0ee3aefb4841dba8a488f29ea -size 138499 +oid sha256:e0af63cf2316a6738061771734f82e923be1ef78d8088fe0653b3595dab41d9b +size 137299 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_HullUpgrade.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_HullUpgrade.uasset new file mode 100644 index 0000000..deb5b8e --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_HullUpgrade.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79a817fc3582880dce9c20f784215b5025d40b68c8ba7bb07bdb01bf1a3e64c +size 156285 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanner.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanner.uasset new file mode 100644 index 0000000..9ee07bd --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanner.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5757a4c5936b5e5ed0133e9cb29595d1b1e37bc12d04cff05349e07d946a8a +size 144939 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanners.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanners.uasset new file mode 100644 index 0000000..e73b925 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Scanners.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60086d0f2240bcf284494cb8b352e07da3164955a9311f7e045dc65c3530f6d +size 2863 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Shields.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Shields.uasset new file mode 100644 index 0000000..38f6059 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_Shields.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06fea6550afdc9141d184e1994a54b1102d6cd97df1ba2cb848d56ccda97299 +size 140401 diff --git a/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_WeaponUpgrade.uasset b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_WeaponUpgrade.uasset new file mode 100644 index 0000000..a9fdf58 --- /dev/null +++ b/Content/ModularShipSystem/Demo/Widgets/WBP_ShopItem_WeaponUpgrade.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749c460c8eca830a2561e19bf0bf49d532f65a4dddf7d710a2b7345b061ab99e +size 133073 diff --git a/Content/ModularShipSystem/Enums/E_ModuleCategories.uasset b/Content/ModularShipSystem/Enums/E_ModuleCategories.uasset new file mode 100644 index 0000000..6c5d2c0 --- /dev/null +++ b/Content/ModularShipSystem/Enums/E_ModuleCategories.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a7b6f767a82257fe4d166a3f3d1b7c523e12b6528cf39086971ef637828876 +size 4742 diff --git a/Content/ModularShipSystem/Enums/E_ScannerCapabilities.uasset b/Content/ModularShipSystem/Enums/E_ScannerCapabilities.uasset index 9d568ea..6cd2d88 100644 --- a/Content/ModularShipSystem/Enums/E_ScannerCapabilities.uasset +++ b/Content/ModularShipSystem/Enums/E_ScannerCapabilities.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3964970239e324b0f9e2d015dc00a06d678d16bce9fd9a3b50dcbcc5e1ae413e -size 3679 +oid sha256:2b3585fb5d482591d00fb92764dc70b8ab0f21f5dbf6114d75940bf37adbf4fb +size 3294 diff --git a/Content/ModularShipSystem/Structs/S_CargoBay.uasset b/Content/ModularShipSystem/Structs/S_CargoBay.uasset new file mode 100644 index 0000000..6aa4eef --- /dev/null +++ b/Content/ModularShipSystem/Structs/S_CargoBay.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b120169bc34de72c83316d97cbab073e441a88444d37c0fabb1784519270e093 +size 5172 diff --git a/Content/ModularShipSystem/Structs/S_HullUpgradeInformation.uasset b/Content/ModularShipSystem/Structs/S_HullUpgradeInformation.uasset new file mode 100644 index 0000000..7063e2f --- /dev/null +++ b/Content/ModularShipSystem/Structs/S_HullUpgradeInformation.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c33566e9a9198fe3e87eff7f35f4ed7ea89f5b7f2cc13b3799d0370dcfeea5 +size 8151 diff --git a/Content/ModularShipSystem/Structs/S_ShieldInfo.uasset b/Content/ModularShipSystem/Structs/S_ShieldInfo.uasset new file mode 100644 index 0000000..f6432a7 --- /dev/null +++ b/Content/ModularShipSystem/Structs/S_ShieldInfo.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99956230cf7be3dc2d1dded8c47949d5703f444eb023aae89cc2ad866161d3c +size 6192 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_CargoBayShopInfo.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_CargoBayShopInfo.uasset new file mode 100644 index 0000000..847d27b --- /dev/null +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_CargoBayShopInfo.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d95d6c286e579ab475c391c76e8db5182db9e9f512a75025656ad240c9d6dd +size 6375 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_HullUpgradeShopInfo.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_HullUpgradeShopInfo.uasset new file mode 100644 index 0000000..8f381aa --- /dev/null +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_HullUpgradeShopInfo.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad4ac7bffcb4c2d279eb69e40d4f730b4b265dee50e41812f08956b1da4a4ee +size 6793 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_ModuleCategories.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_ModuleCategories.uasset new file mode 100644 index 0000000..5c6a2aa --- /dev/null +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_ModuleCategories.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d74aef9a75c4c81b7128ffc730f65eb0fb001a2aa3c1e459998dac5a28d4c2 +size 7350 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_ScannerShopInfo.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_ScannerShopInfo.uasset new file mode 100644 index 0000000..ca7c3d4 --- /dev/null +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_ScannerShopInfo.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861ae3032ed63a603c909572fb6867ebe2e8e390cb9e1de62b0d8c6baf88272a +size 6631 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_ShieldsShopInfo.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_ShieldsShopInfo.uasset new file mode 100644 index 0000000..7245817 --- /dev/null +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_ShieldsShopInfo.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc4e875531ace0b727f51bbb9d2daf69290f182a850195a9b4f49478a7be291 +size 6500 diff --git a/Content/ModularShipSystem/Structs/ShopStructs/S_StationShopLists.uasset b/Content/ModularShipSystem/Structs/ShopStructs/S_StationShopLists.uasset index 67cdf57..e149676 100644 --- a/Content/ModularShipSystem/Structs/ShopStructs/S_StationShopLists.uasset +++ b/Content/ModularShipSystem/Structs/ShopStructs/S_StationShopLists.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:847e68cd6567527ace41d04d389b8de228559da9c7facea899546c1cb00d0019 -size 6922 +oid sha256:b805781247fb4c3bba4ebd94480ef5ff4b9860505be2aed1a81391bb67ad5c48 +size 6983 diff --git a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/OP/YLCCW4C4V38C1Q4RGRBAIM.uasset b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/OP/YLCCW4C4V38C1Q4RGRBAIM.uasset index 2bd9150..194968c 100644 --- a/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/OP/YLCCW4C4V38C1Q4RGRBAIM.uasset +++ b/Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/3/OP/YLCCW4C4V38C1Q4RGRBAIM.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:903c2eff5be534429a73b77de691fbf349a212bd44603f9faead89f4c6cbef87 -size 12003 +oid sha256:508d491935b48cc9a2adeeb25f7a32675e5be9d76d00f591ca76ebca9fbd2499 +size 12669 diff --git a/README.md b/README.md index 87dc654..bba3b32 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ All of the components below need stats defined such as power draw and hull reinf - [X] Basic spaceship pawn - [X] Docking using sockets - [X] Toggles for docking UI and player control over the pawn -- [ ] Data driven shop UI +- [X] Data driven shop UI +- [ ] Purchase and equip from shop UI ### Base Ship Info @@ -19,23 +20,23 @@ All of the components below need stats defined such as power draw and hull reinf ### Hardpoints -- [ ] Various types of weaponry i.e. kinetic, energy, combo, and emp weapons -- [ ] Damage output of hardpoints +- [X] Various types of weaponry i.e. kinetic, energy, combo, and emp weapons +- [X] Damage output of hardpoints ### Scanner -- [ ] Range and info available from a scan +- [X] Range and info available from a scan ### Modules -- [ ] Various Module types i.e. Shields, Engines, Jump Drive, Cargo Bays, Stealth tech, and power delivery +- [X] Various Module types i.e. Shields, Engines, ~~Jump Drive~~, Cargo Bays, ~~Stealth tech~~, and ~~power delivery~~ ### Module upgrades -- [ ] Various types of upgrades i.e. hull reinforcements, shield reinforcements. +- [X] Various types of upgrades i.e. hull reinforcements, ~~shield reinforcements~~, engine upgrades, and weapons. -- [ ] Move UI handling for space station to a HUD class using the interfaces to toggle everything -- [ ] docking should change pawn rotation as well +- [X] Move UI handling for space station to a HUD class using the interfaces to toggle everything +- [X] docking should change pawn rotation as well ### Attributions