(Ugh, I really hate my keyboard. I had the whole tutorial written and then it went psycho and closed the page so now I'm rewriting this tutorial for the 2nd time.)
Ok, this is my second tutorial and hopefully this will help you understand how to work Sprite Assembly.
- This is a screenshot of Guile's sprite and the SA program that Chickenlump I believe created. (Thank you for that xD!) Your probably wondering, "WTF IS WITH ALL THE NUMBERS DX!" but it's actually really easy once you work with it a bit.
00|00 00|00 (I use hex terms for double 0's)
02|00 01|00 - These numbers represent the hair of Crono's front view stand. AKA just standing idly facing front. The numbers you see 2 and 1 represent the hair of him. Here's a screenshot to help you understand.
- That whole spot of Crono's sprites is 255 8x8 sprites. 16*16 = 256 but you have to minus 1 because one of them is 0 thus you get 255. As Vehek's screenshot shows, each 8x8 sprite is labeled as number. The empty spot (2|0) is the slot shown for the Left side of his hair, and 1|0 is for the Right. Changing the 0's on the top row make up body parts that are way out of normal reach. But they can be used to create a bigger character.
2|0 and 1|0 - The 0's represent which block of 255 sprites to use. 0 = The first 255, 1 = the next, 2 and 3 are Crono's sprites. 64, 65, 66 and 67 are also used for this as you can see on the bottom of the first Screenshot.
The next set of numbers 0|0 x2 32|0 and 33|0 are for the halves of the torso. 48|0 and 48|64 are for the feet.
Now for the numbers on the far right.
248|0 - This represents the X/Y of the hair
248|224 - This represents the face and neck
245|208 = Torso
248|240 = Legs/Feet
That explains those pieces.
You might be wondering what would happen if I changed the 1|0 to 2|0, well here's a screenshot.
- As you can see now, his hair is odd looking because you just changed the right side of his hair to look the same as left. This really helps alot to organize these sprites.
That's about it, if there's any questions (Which there probably is) just post it and i'll answer them as best as I can.