api
api copied to clipboard
Scripting API for Aseprite
Add missing pages for commands: - `LayerOpacity` - `CelOpacity`
I just found out there're some websockect support in API and it's really cool. And it's seems that require() support will be in next version. So is there a way...
We should have a way to access widgets by ID. Mainly a canvas to paint some part of its surface. E.g. ```lua local d = Dialog():canvas{ id=myCanvas } local ctx...
We should be able to create an `UIImage()` from an `Image` (and maybe from scratch or other objects), and getting a `GraphicsContext` from it so we can paint on it...
I have made a script which makes a info.concat file using default lua's write function. but i can't delete it using the script. the os.remove returns error saying that remove...
Fixed typo in the description of `Image.rowStride` before: > Each image has a total of **`image.rowSide`** * `image.height` bytes after: > Each image has a total of **`image.rowStride`** * `image.height`...
If you set the `isVisible` property on a Layer inside a transaction, and then call `app.undo()`, the visibility change is not reverted. Example code: ``` local function revealLayers(layers) for i,...