Hi, why there is a 1 pixel between sprites in the spritesheet?
It is not possible to make sprites in standard sizes.
There are two options that I do not like:
1. To make the sprites are not multiples of 2
Sprites 126x126, spritesheet 256x256
<img src="http://www.a3.by/c2/1.png" border="0" />
2. Leave as is, which will reduce the performance
Sprites 128x128, spritesheet 512x512
<img src="http://www.a3.by/c2/2.png" border="0" />
Option that will suit me:
Sprites 128x128, spritesheet 256x256
<img src="http://www.a3.by/c2/3.png" border="0" />
Can I get rid of this pixel or achieve the desired result in another way?