Reputation: 923
I have developed a 2D game using Cocos2d-x and Marmalade.
I would like to know what would it be the "better solution", considering performances, memory etc, to create a Scene before playing the game where I can show to the user a Map like that one used in Candy Crush Game, then:
Many thanks in advance
Sergio
Upvotes: 11
Views: 1466
Reputation: 116
Check out cocos. They have MissionSelect
in the tutorials. The usage of ScrollView
.
Upvotes: 0
Reputation: 1308
You can use CCLayerPanZoom as parent and add menu items, characters etc as children.
Check this link: CCLayerPanZoom demo video
and, you can download the source file CCLayerPanZoom Cpp file and CCLayerPanZoom header file from here.
Upvotes: 0