aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/assets/skyblocker/tabhud/screen_a/default.json
diff options
context:
space:
mode:
authorKevin <92656833+kevinthegreat1@users.noreply.github.com>2023-08-31 20:03:07 -0400
committerGitHub <noreply@github.com>2023-08-31 20:03:07 -0400
commit68eb2556c4809860a73b7bb62cc5f2c84d58c3ae (patch)
tree106fe3e923f05933990242eec85d13be685c8b7a /src/main/resources/assets/skyblocker/tabhud/screen_a/default.json
parent94cca060491122c9f7dfa8f4684ac6f52be510a1 (diff)
parent53ab59cb82a05e887b12645383fb740f7dd3eba5 (diff)
downloadSkyblocker-68eb2556c4809860a73b7bb62cc5f2c84d58c3ae.tar.gz
Skyblocker-68eb2556c4809860a73b7bb62cc5f2c84d58c3ae.tar.bz2
Skyblocker-68eb2556c4809860a73b7bb62cc5f2c84d58c3ae.zip
Merge pull request #230 from msg-programs/json-tabhud
Fully configureable Fancy Tab HUD
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.json70
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