Thanks for the addon it's very useful, I've added a few buttons to it as I like to use the keyboard as little as possible and between this and the "Ring tool" by apsyll I can do that. But I'm trying to add "delete" to it but I don't know how to do it. Is there a way it can be done?
Viewing post in On-Screen Controls for Aseprite comments
According to the GUI definition of Aseprite, by default the Delete button calls the Clear command. Therefor, you should get a functioning “Delete” button on the On-Screen Controls if you add one that calls it. The code would look like this:
:button{
text="Delete",
onclick=function()
app.command.Clear()
end
}
If you encounter any issues, or need some assistance feel free to let me know ✌️