Sprite Sheet help!
CalvinGames
Member Posts: 7
Hey everyone, I am wanting to make a side scrolling platformer game, but dont know how to make a sprite sheet or even where to begin. Do i need a side view of my character, do i need to make a walk cycle for it to make it walk in the game. How to make him look like hes jumping? Just everything for characters.
Please Help!!
Please Help!!
Comments
http://jamie-cross.net/posts/ ✮ Udemy: Introduction to Mobile Games Development ✮ Learn Mobile Game Development in One Day Using Gamesalad ✮ My Patreon Page
Need Help? Email Me | Templates | Full Game Source Code
Artist/Game Developer / Animator at your service..
oh and make sure you make it double the size of what you want it to be in iPhone.
and make sure its divisible by 4
so lets say i make a character that i want to be 200x200pixels in the iPhone...... the pixel size of my artboard in illustrator would be 400x400.
the powers of 2 is a RAM management Rule. Image ram is figured by basically a container size. and each container are determined by the powers of 2 So the containers would be 2,4,8,16,32,64,128,256,512,1024,2048
as you can see theres not much of a difference in the lower numbers but when you get up into 256 and higher it becomes a big deal. an actor the is 258x258 is going to use all the ram of a 512x512 image so what you need to watch for is those cases where you can bump down the image a few pixels and all of a sudden you have drastically reduced your ram usage. Keep I'm mind that is Actual image size. not actor size
Hopefully that helps explain it. if not check out this Comment http://forums.gamesalad.com/discussion/comment/216554/#Comment_216554
Its a good example of what the powers of 2 are talking about