Want to export my sprite as individual layers

Hello, I have made a sprite for myself composed of individual layers. I would like to export my sprite to After Effects or Photoshop with every layer as individual. Similiar to how you can export from Photoshop to After Effects and you can have each and every layer in your composition. I would like to know if this is an option in Aseprite. If it is, I would be very grateful if you could help.

I think right now you can only do that by using the CLI from command line:
https://www.aseprite.org/docs/cli/
https://community.aseprite.org/t/the-command-line-interface/24

The line that you should use for this task is:
aseprite -b “name_of_your_archive.ase” --save-as {layer}.png

Or, is your sprite is animated:
aseprite -b “name_of_your_archive.ase” --save-as {layer}_{frame01}.png

In both cases, the name of the exported files (or file sequences) will be the same of the layer.

I hope this helps! :slight_smile: