Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When creating a simple HelloWorld Box2d template from cocos2d 2.0, the splash screen shrinks to half its normal size (after the flash). Its then as if every sprite is smaller. Is this normal?

share|improve this question

1 Answer

Have you enabled Retina display mode? (It's on by default)

Did you add high resolution images (with -hd suffix) to your project?

If not, you'll notice all sprites being 50% smaller on a Retina display device because cocos2d is displaying the SD images on a Retina resolution surface. Either add -hd images that are twice as high and wide, or disable Retina display mode (look in AppDelegate.m).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.