diff options
author | msg-programs <msgdoesstuff@gmail.com> | 2023-07-29 19:15:35 +0200 |
---|---|---|
committer | msg-programs <msgdoesstuff@gmail.com> | 2023-07-29 19:15:35 +0200 |
commit | a3e6f2854e8c254be303ace9a01f4c195adf3e16 (patch) | |
tree | f567019325d46a1939823aabd8cb66973cc69651 /src/main/resources/assets/skyblocker/tabhud/screen_a/default.json | |
parent | 093a32ad7bec2173691017967434234fc961c5cf (diff) | |
download | Skyblocker-a3e6f2854e8c254be303ace9a01f4c195adf3e16.tar.gz Skyblocker-a3e6f2854e8c254be303ace9a01f4c195adf3e16.tar.bz2 Skyblocker-a3e6f2854e8c254be303ace9a01f4c195adf3e16.zip |
Change resource dirs to not contain uppercase letters.
Diffstat (limited to 'src/main/resources/assets/skyblocker/tabhud/screen_a/default.json')
-rw-r--r-- | src/main/resources/assets/skyblocker/tabhud/screen_a/default.json | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_a/default.json b/src/main/resources/assets/skyblocker/tabhud/screen_a/default.json new file mode 100644 index 00000000..dcfa5138 --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_a/default.json @@ -0,0 +1,70 @@ +{ + "widgets":[ + { + "name": "SkillsWidget", + "alias": "sw" + }, + { + "name": "EventWidget", + "alias": "evw", + "inGarden": false + }, + { + "name": "UpgradeWidget", + "alias": "uw" + }, + { + "name": "ProfileWidget", + "alias": "pw" + }, + { + "name": "EffectWidget", + "alias": "efw" + }, + { + "name": "ElectionWidget", + "alias": "elw" + }, + { + "name": "CookieWidget", + "alias": "cw" + } + ], + "layout": [ + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["sw", "evw", "uw"] + }, + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["pw", "efw"] + }, + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["elw", "cw"] + }, + { + "op": "align", + "reference": "horizontalCenter", + "apply_to": ["sw", "evw", "uw"] + }, + { + "op": "collideAgainst", + "direction": "left", + "widgets": ["pw", "efw"], + "colliders": ["sw", "evw", "uw"] + }, + { + "op": "collideAgainst", + "direction": "right", + "widgets": ["elw", "cw"], + "colliders": ["sw", "evw", "uw"] + } + ] +}
\ No newline at end of file |