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_a/rift.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/screen_a/rift.json')
-rw-r--r-- | src/main/resources/assets/skyblocker/tabhud/screen_a/rift.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyblocker/tabhud/screen_a/rift.json b/src/main/resources/assets/skyblocker/tabhud/screen_a/rift.json new file mode 100644 index 00000000..8d1d4c5f --- /dev/null +++ b/src/main/resources/assets/skyblocker/tabhud/screen_a/rift.json @@ -0,0 +1,48 @@ +{ + "widgets":[ + { + "name": "RiftProfileWidget", + "alias": "profile" + }, + { + "name": "RiftStatsWidget", + "alias": "stats" + }, + { + "name": "ShenWidget", + "alias": "shen" + }, + { + "name": "CookieWidget", + "alias": "cookie" + }, + { + "name": "AdvertisementWidget", + "alias": "ad" + } + ], + "layout": [ + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["stats", "ad"] + }, + { + "op": "stack", + "direction": "vertical", + "align": "center", + "apply_to": ["profile", "shen", "cookie"] + }, + { + "op": "align", + "reference": "leftOfCenter", + "apply_to": ["stats", "ad"] + }, + { + "op": "align", + "reference": "rightOfCenter", + "apply_to": ["profile", "shen", "cookie"] + } + ] +}
\ No newline at end of file |