I am working on an iOS action game wherein the player travels between various "rooms," each of which is contained in a CCScene. When the player exits a room, the next one "slides" onto the screen via the wonderful built-in transitions provided by cocos2d.

The problem is, it's critical that my UI Control elements stay on the screen. They live in the bottom portion of the screen while the playing area is at the top. However, it appears that there may actually be no way of limiting the size of a CCScene so that it occupies only part of the screen.

I was hoping I could just tell cocos2d to make the CCScene node occupy a space smaller than the full screen:

CCScene* scene = [CCScene node];
scene.contentSize = CGSizeMake(200, 200);

But so far nothing like that has worked. The CCScene always occupies the full screen. I'm even okay with it if I have to move my UI control elements completly out of cocos2d to get this to work, using view controllers and what not. But right now I'm curious if what I'm trying to do is even possible within cocos2d.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Please take a look at EAGLViewTest in cocos2d tests directory. The intent of this test project is to use cocos2d only in the specified rectangle area. It is specified by EAGLView. And you can use Interface Builder for it.

link|improve this answer
Thanks- hopefully this is what I need. Unfortunately, it looks like the EAGLViewTest is actually broken in the current cocos2d distribution (1.0.0rc2) It's crashing on a call to [CCConfiguration checkForGLExtension]. If you have any working samples you could share, that would be great. Thanks! – todd412 May 25 '11 at 20:10
1  
I've already sent a pull request for it :-) "Fixed EAGLViewTest" Could you try add -ObjC option to OTHER_LDFLAGS of EAGLViewTest target? – Kazuki Sakamoto May 25 '11 at 20:32
It has been merged. 'develop branch commits' – Kazuki Sakamoto May 27 '11 at 2:15
Fantastic! Works like a charm, thanks for doing that! – todd412 May 27 '11 at 5:32
feedback

Your Answer

 
or
required, but never shown

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