draw_pixels
Plot individual pixels on a sprite by specifying coordinates, color, layer, and frame. Useful for precise pixel art creation.
Instructions
Plot individual pixels.
Args:
pixels: List of {"x": int, "y": int, "color": "#hex"?}. If a pixel omits
"color", the shared `color` argument is used.
color: Default colour for pixels that don't specify their own.
layer: Target layer name or 1-based index (default: top layer).
frame: Target frame, 1-based (default 1).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| frame | No | ||
| layer | No | ||
| pixels | Yes | ||
| filename | Yes |