I am trying to upgrade my game to take advantage of the retina display. Here are the things i got confused about. Please help me out.
First, please correct me if i'm wrong on this. With the retina display enabled, Cocos2d will try to look for -hd files (for example Dog-hd.png) and use them. If it can't find any, then it's going to load the original Dog.png WITHOUT scaling it up by 2. My problem is that I don't have (or don't want) all the graphics to be in high resolution but I still want everything to be the same size as before, with a few objects in HD. If I just leave the SD graphics as they are, they will look 1/2 as large as before on a retina display.
What are the things I can do to make it recognize SD graphics and scale them up by 2 automatically in the code? Thanks!
@2xpostfix. Soimagename.pngandimagename@2x.pngwould be the file names to automatically get used withUIImage'simageWithName– Benoit Jan 12 '12 at 22:28