-
Notifications
You must be signed in to change notification settings - Fork 5
Config
yurisuika edited this page Aug 7, 2024
·
8 revisions
These are Raised's config options and what they control.
The integer amount the element is translated horizontally. Default is 0, except for the hotbar, which is 2.
The integer amount the element is translated vertically. Default is 0.
The position the element is translated from. Choices are TOP
, TOP_LEFT
, TOP_RIGHT
, LEFT
, RIGHT
, BOTTOM
, BOTTOM_LEFT
, BOTTOM_RIGHT
. Default depends on the element.
The synced element. Choices are HOTBAR
, CHAT
, BOSSBAR
, SIDEBAR
, EFFECTS
, PLAYERS
, TOASTS
, OTHER
, NONE
. Default is NONE.
The texture fix method. Choices are AUTO
, REPLACE
, PATCH
, NONE
. Default is AUTO
.
Here is an example of the default config.
{
"layers": {
"hotbar": {
"x": 0,
"y": 2,
"position": "BOTTOM",
"sync": "NONE"
},
"chat": {
"x": 0,
"y": 0,
"position": "BOTTOM",
"sync": "NONE"
},
"bossbar": {
"x": 0,
"y": 0,
"position": "TOP",
"sync": "NONE"
},
"sidebar": {
"x": 0,
"y": 0,
"position": "RIGHT",
"sync": "NONE"
},
"effects": {
"x": 0,
"y": 0,
"position": "TOP_RIGHT",
"sync": "NONE"
},
"players": {
"x": 0,
"y": 0,
"position": "TOP",
"sync": "NONE"
},
"toasts": {
"x": 0,
"y": 0,
"position": "TOP_RIGHT",
"sync": "NONE"
},
"other": {
"x": 0,
"y": 0,
"position": "BOTTOM",
"sync": "NONE"
}
},
"resources": {
"texture": "AUTO"
}
}