Create a game

Upload a logo, name it, and paste your map data.

PNG, JPG or WEBP. Max 2 MB. Square works best.
A JSON object with an optional baseplate and a required blocks array. Blocks require position (x, y, z) and size (w, h, d). Optional: rotation (rotX, rotY, rotZ), color (r, g, b 0-1), transparency 0-1, type (NORMAL / HAZARD / CHECKPOINT / VICTORY).
Show example
{
  "baseplate": {
    "size": 100.0,
    "color": [0.3, 0.7, 0.3]
  },
  "blocks": [
    { 
      "x": 0.0, "y": 2.0, "z": -10.0, 
      "w": 6.0, "h": 1.0, "d": 6.0, 
      "r": 1.0, "g": 0.2, "b": 0.2,
      "type": "NORMAL"
    },
    { 
      "x": 5.0, "y": 4.0, "z": -25.0, 
      "w": 3.0, "h": 0.5, "d": 3.0, 
      "rotY": 45.0,
      "type": "CHECKPOINT"
    }
  ]
}