Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.29 KB

sprite.md

File metadata and controls

33 lines (26 loc) · 1.29 KB

Sprite structure

In Aseprite a document/file/sprite has the following properties:

  1. It has a size in pixels (width and height).
  2. It has a color mode, which tell you how many colors the image can handle. All images in the sprite are in one specific mode, you cannot mix RGB images with Indexed images in the same sprite.
  3. It contains a set of layers. You can see them in the Timeline. The most important concept here is that there are two kind of layers: the background layer for opaque sprites, and transparent layers. A sprite can contain only one background layer, but several transparent layers.
  4. It contains animation frames. Each frame has a duration, i.e. how many milliseconds the frame must be on screen when the animation is being played.
  5. Each layer/frame intersection is called cel, and contains the image where you finally can paint.

The timeline show you the whole structure of the sprite like a grid. Rows are layers and columns are frames, each little cell of the matrix is a cel:

Cels Matrix


SEE ALSO

Color | Save | Sprite size