diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-03-24 12:25:32 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-03-24 12:25:32 +0500 |
| commit | aab26bbdb0d8ad96e774baa07d44a3fcc5212cf1 (patch) | |
| tree | cf2296dc48767f8b339e1867fc16079c6ba235c8 /packages | |
| parent | 3e3e1f480f87192cf1042bec0ee0d4bb7c356e62 (diff) | |
Moved assets to a 'core' package
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/Core/Description.json | 14 | ||||
| -rw-r--r-- | packages/Core/Menus/MainMenu.json | 36 | ||||
| -rw-r--r-- | packages/TestPackage/Description.json | 8 |
3 files changed, 56 insertions, 2 deletions
diff --git a/packages/Core/Description.json b/packages/Core/Description.json new file mode 100644 index 0000000..326fc03 --- /dev/null +++ b/packages/Core/Description.json @@ -0,0 +1,14 @@ +{ + "name": "core", + "version": { + "MajorVersion": 0, + "MinorVersion": 0, + "Patch": 1 + }, + "type": "assetpack", + "MinimumGameVersion": { + "MajorVersion": 0, + "MinorVersion": 0, + "Patch": 1 + } +} diff --git a/packages/Core/Menus/MainMenu.json b/packages/Core/Menus/MainMenu.json new file mode 100644 index 0000000..9054627 --- /dev/null +++ b/packages/Core/Menus/MainMenu.json @@ -0,0 +1,36 @@ +{ + "PaddingX": 0.05, + "PaddingY": 0.1, + "Contents": { + "Type": "gridrow", + "Children": [ + { + "Type": "void", + "Weight": 3 + }, + { + "Type": "gridcolumn", + "Weight": 1, + "Spacing": 0.01, + "Children": [ + { + "Type": "label", + "Text": "Ruines of Rafdalon", + "BackgroundElement": { + "Type": "image", + "TextureName": "testPackage/water.png" + } + }, + { + "Type": "label", + "Text": "Load a demo scene" + }, + { + "Type": "void", + "Weight": 3 + } + ] + } + ] + } +} diff --git a/packages/TestPackage/Description.json b/packages/TestPackage/Description.json index 9fd287f..e0cf6fb 100644 --- a/packages/TestPackage/Description.json +++ b/packages/TestPackage/Description.json @@ -1,8 +1,12 @@ { "name": "testPackage", - "version": 1, + "version": { + "MajorVersion": 0, + "MinorVersion": 0, + "Patch": 1 + }, "type": "story", - "MinimumVersion": { + "MinimumGameVersion": { "MajorVersion": 0, "MinorVersion": 0, "Patch": 1 |
