When I creating a new sprite Aseprite ask to choose an aspect ratio of 1:1 or 2:1 (double dot).
Atari has two more modes for displaying sprites (and not only) when the aspect ratio is 4:1 and even 8:1.
Is it possible to add such modes for drawing sprites?
i can’t test it right now, but maybe the hack mentioned by HeyItsLollie still works?
1 Like
Awesome! This is exactly what I needed!
Thanks a lot!
Just edit:
SteamLibrary\steamapps\common\Aseprite\data\widgets\new_sprite.xml
And add:
<combobox id="pixel_ratio" cell_align="horizontal">
<listitem text="@.square_pixels" value="1:1" />
<listitem text="@.double_wide" value="2:1" />
<listitem text="Atari 4:1" value="4:1" />
<listitem text="Atari 8:1" value="8:1" />
1 Like
Also need to fix another file - sprite_properties.xml
<label text="@.pixel_ratio" />
<combobox id="pixel_ratio" cell_align="horizontal">
<listitem text="@.square_pixels" value="1:1" />
<listitem text="@.double_wide" value="2:1" />
<listitem text="@.double_high" value="1:2" />
<listitem text="Atari 4:1" value="4:1" />
<listitem text="Atari 8:1" value="8:1" />
1 Like