Two quick questions...
FatalCrest
Member Posts: 113
Um, Why is it important that all exported sprites pixel dimensions be divisible by 4?
Anddd what happens if we don't design a game to fit the 960x480 iPhone resolution?
Anddd what happens if we don't design a game to fit the 960x480 iPhone resolution?
Comments
There are tons of posts already on this subject in the forum...do a search if you need more details.
Resolution Independence is an option. You don't have to use it. A game will still play on the iPhone 4...however the lower quality of image resolution will be noticeable on the sharper screen of the new device.
I've been worried about my game lately haha
Example as I understand it:
A graphic that is 60 pixels by 60 pixels will use the same memory as one that is 64x64.
Therefore if you use a 66x66 then it will use the same memory as a 128x128 graphic, resizing it down to 64x64 will result in a memory saving in game. Imagine it as rounding up to the nearest number on the list at the top.
To a large degree this might be unavoidable as graphic sizes at these resolutions might not work well for your game. But on some graphics it could save you a little ram.