draw_ellipse
Draw an ellipse on a specified layer and frame, with adjustable bounding box, color, fill, and stroke thickness, then save the sprite.
Instructions
Draw an ellipse on a specific layer and frame using Aseprite's native ellipse tool
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Sprite file | |
| layerName | No | Target layer name | |
| frameNumber | No | Frame number (1-indexed, default: 1) | |
| x | Yes | Left edge of bounding box | |
| y | Yes | Top edge of bounding box | |
| width | Yes | Ellipse bounding box width | |
| height | Yes | Ellipse bounding box height | |
| color | Yes | Color as hex string (#RRGGBB), palette index, or {r,g,b,a} | |
| filled | No | Fill the ellipse (default: true) | |
| thickness | No | Stroke thickness in pixels (default: 1) | |
| savePath | No | Path to save |