Skip to content
yurisuika edited this page Aug 7, 2024 · 8 revisions

Config Options

These are Raised's config options and what they control.

Layers > > X

The integer amount the element is translated horizontally. Default is 0, except for the hotbar, which is 2.

Layers > > Y

The integer amount the element is translated vertically. Default is 0.

Layers > > Position

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.

Layers > > Sync

The synced element. Choices are HOTBAR, CHAT, BOSSBAR, SIDEBAR, EFFECTS, PLAYERS, TOASTS, OTHER, NONE. Default is NONE.

Resources > Texture (1.20.2+)

The texture fix method. Choices are AUTO, REPLACE, PATCH, NONE. Default is AUTO.


Default Config

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"
  }
}
Clone this wiki locally