Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I have a CCLayer (itemLayer) that has a bunch of CCMenuItemImage (itemButton) objects in it placed vertically in a column. These itemButton objects go way past the bounds of the screen and the itemLayer is sized accordingly to fit all itemButton objects it contains (for example, an itemButton object is sized 50px high and itemLayer has 30 of it, itemLayer will then have 1500px as its height).

However, this itemLayer object's visible area only needs to be 500px high. Is it possible to somehow mask this itemLayer object so that the user only sees 500px of it but still be able to scroll through the whole list of itemButton objects?

share|improve this question

1 Answer

Wouldn't you size your layer and use a CCScrollView?

share|improve this answer
Hi Jason! Please refrain from posting such simple things as an answer. Instead, sentence such as these are better suited as comments. :) – Vaughan Hilts 1 hour ago

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.