ZachIsAGardner / ZacharyAsepriteScripts

Zachary's Aseprite Scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Helpful Asesprite Scripts

Expand Selection to Grid

Resize Sprite Sheet

Aseprite Opener

On Windows Aseprite will not open .ase and .png files in the existing Aseprite instance. This is a workaround for that. Combined with VsCode and this extension you can open files from VsCode and straight into Aseprite.

In settings.json:

"openInExternalApp.openMapper": [
        {
            "extensionName": "png",
            "apps": [
                {
                    "title": "Open in Aseprite (.png)",
                    "shellCommand": "path to file/aseprite_opener.ahk ${file}"
                }
            ]
        },
        {
            "extensionName": "ase",
            "apps": [
                {
                    "title": "Open in Aseprite (.ase)",
                    "shellCommand": "path to file/aseprite_opener.ahk ${file}"
                }
            ]
        }
    ],

About

Zachary's Aseprite Scripts


Languages

Language:Lua 89.3%Language:AutoHotkey 10.7%