fill_area_at
Fill a contiguous region of a specific layer and frame in an Aseprite file from a starting point, with optional color and auto-create layer.
Instructions
Fill an area on a specific layer/frame.
Args: filename (str): The path to the Aseprite file. layer_name (str): The name of the layer to draw on. frame_index (int): The index of the frame to draw on. x (int): The x coordinate of the point to start filling from. y (int): The y coordinate of the point to start filling from. color (str, optional): The color to fill the area with. Defaults to "#000000". create_if_missing (bool, optional): Whether to create the layer if it doesn't exist. Defaults to True.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes | ||
| color | No | #000000 | |
| filename | Yes | ||
| layer_name | Yes | ||
| frame_index | Yes | ||
| create_if_missing | No |