Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Create Canvas Command.

The following node creates a 200x200 transparent canvas.

{
  "create_canvas": {
    "format": "bgra_32",
    "w": 200,
    "h": 200,
    "color": "transparent"
  }
}

The following node creates a 200x200 black canvas. Transparency operations will not work as the canvas doesn’t support an alpha channel.

{
  "create_canvas": {
    "format": "bgr_32",
    "w": 200,
    "h": 200,
    "color": "black"
  }
}