mc-SmartSlotting

We use our newest slot technology to help our configurators work!

Border

item:
  slot: "border" # The GUI framework
  # etc...

Chess

item:
  slot: "chess:white" # Checkerboard sample
  # etc...
item:
  slot: "chess:black" # Checkerboard sample
  # etc...

Corners

item:
  slot: "corners" # The 4 corners
  # etc...

Center

item:
  slot: "center" # The centre of the GUI
  # etc...

Multiple Slot

item:
  slot: "0,1,2,3,4"
  # etc...

Range

item:
  slot: "0-8" # From X to Y
  # etc...

Grid

item:
  slot: "grid:3x1" # 3x1 Grid
  # etc...

Offset

item:
  slot: "grid:3x2:offset:12" # 3 columns x 2 rows, starting from slot 12
  # etc...

Edges

item:
  slot: "edges" # Interior area without frame
  # etc...

Directions

item:
  slot: "top" # Top row
  # etc...
item:
  slot: "bottom" # Bottom row
  # etc...
item:
  slot: "left" # Left column
  # etc...
item:
  slot: "right" # Right column
  # etc...

Fill

item:
  slot: "fill" # All free areas
  # etc...

Priority

item:
  slot: "border"
  priority: 1
  # etc...
item2:
  slot: "fill"
  priority: -1 # last time

Last updated