Config
These are Raised's config options. Layers that have been registered by a mod (or in some cases automatically by Raised) are added to the layers section.
The integer amount of displacement that the layer is translated on the x-axis. Default is 0 (minecraft:hotbar is 2).
The integer amount of displacement that the layer is translated on the y-axis. Default is 0.
The direction that the layer is translated on the x-axis. Choices are LEFT, NONE, and RIGHT. Default depends on the layer.
The direction that the layer is translated on the y-axis. Choices are UP, NONE, and DOWN. Default depends on the layer.
The string of the synced layer. Choices are generated from the registered layers. Default is set to itself.
The texture fix method. Choices are AUTO, REPLACE, PATCH, NONE. Default is AUTO.
Here is an example of the default config.
{
"layers": {
"minecraft:bossbar": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "NONE",
"y": "DOWN"
},
"sync": "minecraft:bossbar"
},
"minecraft:chat": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "NONE",
"y": "UP"
},
"sync": "minecraft:chat"
},
"minecraft:effects": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "LEFT",
"y": "DOWN"
},
"sync": "minecraft:effects"
},
"minecraft:hotbar": {
"displacement": {
"x": 24,
"y": 24
},
"direction": {
"x": "NONE",
"y": "UP"
},
"sync": "minecraft:hotbar"
},
"minecraft:other": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "NONE",
"y": "NONE"
},
"sync": "minecraft:other"
},
"minecraft:players": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "NONE",
"y": "DOWN"
},
"sync": "minecraft:players"
},
"minecraft:sidebar": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "LEFT",
"y": "NONE"
},
"sync": "minecraft:sidebar"
},
"minecraft:subtitles": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "LEFT",
"y": "UP"
},
"sync": "minecraft:subtitles"
},
"minecraft:toasts": {
"displacement": {
"x": 0,
"y": 0
},
"direction": {
"x": "LEFT",
"y": "DOWN"
},
"sync": "minecraft:toasts"
}
},
"resource": {
"texture": "AUTO"
}
}