Docs

Rendering and Export

A render block exports the scene to a file. It accepts image, video, and image_sequence types. Export execution is provided by the active render host, so parser acceptance alone doesn't guarantee every format is available.

imagine poster
  size: (1920, 1080)
  fill: "#101218"

create poster

render
  type: "image"
  size: (1920, 1080)
  format: "PNG"
  output: "poster.png"

Known render fields are type, size, scale, format, duration, startTime, fps, and output. Other fields are retained as render overrides: accepted, but not guaranteed to have an export implementation.

Use the scene fill property for a background color; background isn't a special render field in the current parser or renderer.

render
  type: "image_sequence"
  size: (1280, 720)
  format: "PNG"
  duration: 1s
  fps: 30
  output: "frames"