diff options
author | Kevin <92656833+kevinthegreat1@users.noreply.github.com> | 2023-08-31 20:03:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 20:03:07 -0400 |
commit | 68eb2556c4809860a73b7bb62cc5f2c84d58c3ae (patch) | |
tree | 106fe3e923f05933990242eec85d13be685c8b7a /src/main/resources/assets/skyblocker/tabhud/screen_b | |
parent | 94cca060491122c9f7dfa8f4684ac6f52be510a1 (diff) | |
parent | 53ab59cb82a05e887b12645383fb740f7dd3eba5 (diff) | |
download | Skyblocker-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_b')
6 files changed, 174 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/default.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/default.json new file mode 100644 index 00000000..a1f52ad5 --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/default.json @@ -0,0 +1,17 @@ +{ + "widgets": [ + { + "name": "PlayerListWidget", + "alias": "plw" + } + ], + "layout": [ + { + "op": "place", + "where": "center", + "apply_to": [ + "plw" + ] + } + ] +}
\ No newline at end of file diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/dungeon.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/dungeon.json new file mode 100644 index 00000000..075e3d4c --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/dungeon.json @@ -0,0 +1,53 @@ +{ + "widgets":[ + { + "name": "DungeonPlayerWidget", + "alias": "dpw1", + "player": 1 + }, + { + "name": "DungeonPlayerWidget", + "alias": "dpw2", + "player": 2 + }, + { + "name": "DungeonPlayerWidget", + "alias": "dpw3", + "player": 3 + }, + { + "name": "DungeonPlayerWidget", + "alias": "dpw4", + "player": 4 + }, + { + "name": "DungeonPlayerWidget", + "alias": "dpw5", + "player": 5 + } + ], + "layout": [ + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["dpw1", "dpw2", "dpw3"] + }, + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["dpw4", "dpw5"] + }, + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["dpw1", "dpw2", "dpw3"] + }, + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["dpw4", "dpw5"] + } + ] +}
\ No newline at end of file diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/garden.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/garden.json new file mode 100644 index 00000000..772e0594 --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/garden.json @@ -0,0 +1,29 @@ +{ + "widgets":[ + { + "name": "IslandGuestsWidget", + "alias": "igw" + }, + { + "name": "IslandSelfWidget", + "alias": "isw" + } + ], + "layout": [ + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["igw"] + }, + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["isw"] + }, + { + "op": "align", + "reference": "verticalCenter", + "apply_to": ["igw", "isw"] + } + ] +}
\ No newline at end of file diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/guest_island.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/guest_island.json new file mode 100644 index 00000000..54a4039d --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/guest_island.json @@ -0,0 +1,29 @@ +{ + "widgets":[ + { + "name": "IslandGuestsWidget", + "alias": "igw" + }, + { + "name": "IslandOwnersWidget", + "alias": "iow" + } + ], + "layout": [ + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["igw"] + }, + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["iow"] + }, + { + "op": "align", + "reference": "verticalCenter", + "apply_to": ["igw", "iow"] + } + ] +}
\ No newline at end of file diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/home_island.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/home_island.json new file mode 100644 index 00000000..772e0594 --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/home_island.json @@ -0,0 +1,29 @@ +{ + "widgets":[ + { + "name": "IslandGuestsWidget", + "alias": "igw" + }, + { + "name": "IslandSelfWidget", + "alias": "isw" + } + ], + "layout": [ + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["igw"] + }, + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["isw"] + }, + { + "op": "align", + "reference": "verticalCenter", + "apply_to": ["igw", "isw"] + } + ] +}
\ No newline at end of file diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_b/unknown.json b/src/main/resources/assets/skyblocker/tabhud/screen_b/unknown.json new file mode 100644 index 00000000..b682cc3d --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_b/unknown.json @@ -0,0 +1,17 @@ +{ + "widgets": [ + { + "name": "ErrorWidget", + "alias": "ew" + } + ], + "layout": [ + { + "op": "place", + "where": "center", + "apply_to": [ + "ew" + ] + } + ] +}
\ No newline at end of file |