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/standard/crystal_hollows.json | |
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/standard/crystal_hollows.json')
-rw-r--r-- | src/main/resources/assets/skyblocker/tabhud/standard/crystal_hollows.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyblocker/tabhud/standard/crystal_hollows.json b/src/main/resources/assets/skyblocker/tabhud/standard/crystal_hollows.json new file mode 100644 index 00000000..7a9db97d --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/standard/crystal_hollows.json @@ -0,0 +1,44 @@ +{ + "widgets":[ + { + "name": "ServerWidget", + "alias": "sw" + }, + { + "name": "PowderWidget", + "alias": "pw" + }, + { + "name": "CommsWidget", + "alias": "cw" + }, + { + "name": "ForgeWidget", + "alias": "fw" + } + ], + "layout": [ + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["sw", "cw"] + }, + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["fw", "pw"] + }, + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["sw", "cw"] + }, + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["pw", "fw"] + } + ] +}
\ No newline at end of file |