cocos2D for iPhone is an Objective-C port of the cocos2D (Python) framework for building 2D games and graphical applications for iOS devices. Despite its name, cocos2D-iphone supports building Mac OS X applications as well.

learn more… | top users | synonyms

0
votes
1answer
25 views

Support retina iPhone and low-def ipad but not retina iPad in cocos2d?

I have an app that uses Cocos2D which supports normal and retina iPhones. I'm trying to port it so it also supports the iPad. However, I do not want to support the retina iPad (because I do not have ...
0
votes
1answer
14 views

Cocos2d CCMenuItem not responding

I'm having some trouble with have a CCMenuItem button work. I've followed all instructions/advice given in previous examples and questions, but nothing seems to work. Whenever I click the button, the ...
0
votes
0answers
5 views

I need to fix Cocos2d v2.0 migration with OpenGL parameters

I moved a project from v1.0 to cocos2d v2.0 and Im getting a few openGL warnings Im not familiar with (im not familiar with openGL at all actually). Implicit declaration of function glPointSize is ...
0
votes
0answers
5 views

CCTexture2DMutable copy in Cocos2d v2.0 not letting me assign to CCTexture2D

I have an app that im converting to cocos2d v2.0. I originally had this: UIImage *someImage3 = [UIImage imageNamed:@"fielder_run_sentinel_colors.png"]; CGImageRef someImageRef3 = ...
1
vote
0answers
24 views

Cocos2d-iPhone: Apply an image to a CCLabelTTF?

In Cocos2d-iPhone, I was wondering if it was possible to either apply an image to a text label, or use a text label as a mask for an image? I was hoping to 'fill' a custom true type font with a ...
0
votes
1answer
16 views

Cocos2d: which information can I extract from a ccTouchesEnded event?

Stupid question but for me very useful to clarify. I am developing a game where I would like to recognize a series of two consecutive swipes (horizontal and vertical) to trigger a special shoot. ...
0
votes
0answers
6 views

How do I prevent custom font in Cocos2d from appearing cut off

I am using a custom font called KomikaTitle. In some cases the font appears cut off on the left in the first character. This doesn't happen when I use a native font such as Arial. The following is ...
0
votes
1answer
18 views

Is it possible to cache a json file in cocos2d?

I have a project in that I need to cashe .json files. It's Performance will rely on it. Is there any way possible to cache a .json file in cocos2d 2.0 ?
0
votes
1answer
14 views

Cocos2d layer and touches priority management

I have my main scene, above it i set a new layer with CCLayer ,this layer has a button. but when i hit that button (CCMenu), the layer behind it is also get the touches and do stuff. I want to enable ...
0
votes
0answers
33 views

Font size varies for different iOS devices

Can any one tell me how to handle font size for different iOS resolution devices? I am working on cocos2dx and using CCLabelTTF. What happens is that same font size appears differently iPhone and ...
0
votes
1answer
22 views

Recreating bugs in cocos2d iphone

I guess someone must have asked a similar question before, but here goes. It would be useful to be able to record games so that if a bug happened during the game, the recorded play can be reused ...
0
votes
1answer
65 views

How can I find who is the parent of a class?

Im working on a game in cocos2d and a class called Player.h. Its not my game, its a project im reviewing. It has a method called gotHit which has a call like this: [self.parent processHit]; I ...
1
vote
0answers
15 views

Infinite, noise-generated tile map in Cocos2d/ios?

I have been working for weeks on a game concept in java, and have decided it will be best to implement the game in iOS, primarily for iPad. I wrote everything myself in java and am now researching ...
0
votes
1answer
20 views

How to flip a complex box2d fixture?

I have a complex CCSprite in which I am using Physics Editor software to create the fixtures for it. The b2Body which contains the CCSprite goes back and forth horizontally on the ipad screen. The ...
0
votes
0answers
22 views

cant see the right label in cocos2d

I used to set the label with CCLabelTTF and "AppleGothic" font . I did that with the newest version of cocos2d-2.0 . Now i was trying to set the same font in another previous project that uses ...
0
votes
2answers
30 views

What should I replace CCTexture2D initWithImage with?

What should I replace CCTexture2D initWithImage with? I have this method: CCTexture2D *noMutableTexture = [[[CCTexture2D alloc] initWithImage:[UIImage imageNamed:@"myImage.png"]] autorelease]; I ...
1
vote
1answer
23 views

How can I encapsulate Cocos2d Sprite Frames within a class?

So in my cocos2d-iphone game I have an action layer - where all the magic happens, and then I have classes for my enemy sprites and my main protagonist sprite. In my action layer, I add the sprite ...
0
votes
0answers
18 views

how to build cocos2d-x project for tizen device?

I am using Tizen SDK v2.1.0. cocos2d-x project working well for emulator but unable to run on device. When change configuration from Emulator to Device following error appears ...
0
votes
0answers
13 views

Errors in using Space Manager

I am new to gaming physics in ios.Using space Manager as my physics engine.I have included the space manager files in my project.Added the code in init method. smgr = [[SpaceManager alloc] init]; ...
1
vote
1answer
36 views

Sprite jump from position(x, y) to position(width-x, y) in a parabolic way

I'm working on Cocos2D, and I need to make the sprite jump from position(x, y) to position(width-x, y) in a parabolic way. It's my first time working in game development. How can I make the animation ...
0
votes
0answers
24 views

Is this best practive for schedule and unschedule when moving sprite?

Just wondering if this is the best solution for me to control my sprites movement with a custom joystick. //Move Up if (bDegree < 45 && btocLength > 50) { [self ...
1
vote
1answer
26 views

Black screen and garbled fps counter after upgrade to Cocos2D 2.0

I was working on a game in Cocos2D 1.0 (based on the tutorials in Learning Cocos2D) and just upgraded to Cocos2D 2.0, following the official directions here, making sure to delete the old cocos2d ...
0
votes
1answer
25 views

How to detect touch outside (empty space) - cocos2d

This is my code for detect that if touch on a specific sprite - (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *myTouch = [touches anyObject]; CGPoint location = [myTouch ...
0
votes
1answer
17 views

OpenGL error in cocos2d

glDisable(GL_TEXTURE_2D); glDisableClientState(GL_COLOR_ARRAY); glDisableClientState(GL_TEXTURE_COORD_ARRAY); _world->DrawDebugData(); // restore default GL states glEnable(GL_TEXTURE_2D); ...
1
vote
2answers
20 views

CCDirector may not respond to view (cocos2d-iphone)

ArcadeHighScoreLayer.m I am trying to add UITableView using @implementation ArcadeHighScoreLayer { UITableView *table; int count[N_OF_SECTION]; } - (void) onEnterTransitionDidFinish { ...
-1
votes
0answers
561 views

SpriteKit vs Cocos2d [closed]

I want to make my first very simple 2d game just for iOS and I want to try Apple's SpriteKit. It looks very similar to existing Cocos2d for iPhone but now it's native Apple's framework. So I am ...
0
votes
0answers
21 views

Particles around a sprite

I'm new to the CoCos2D development. I have checked out some tutorials and went on trying to develop a little idea. I have checked some partical tutorials and it all looks nice but I still have some ...
0
votes
1answer
20 views

How to optimize my memory usage with sprites…between SpriteFrameCache and SpriteBatchNode

I have seen the usage of plist and png atlasses for the game i am developing. However I've notice a slight performance swiftness(speed up) keeping the 60 fps, and for a side note my app has not crash ...
1
vote
0answers
21 views

I would like annotations to cleanly fall into the center of the shape drawn. Unknown cause of annotation offset

All, I've recently followed this tutorial on drawing smooth line's using cocos2d. http://www.merowing.info/2012/04/drawing-smooth-lines-with-cocos2d-ios-inspired-by-paper/ It's a great tutorial. I ...
1
vote
1answer
20 views

changing box2d 'body's' gravity scale

I set the gravity scale property of a Box2d body. I would like to change the gravity scale when the body reaches a specific position. Can this be done? If yes, how can it be achieved.
0
votes
0answers
10 views

CCCallBlock + a list of waypoints? (maybe with a recursion)

I write a game of Tower Defense genre. As I understand each enemy should move from one waypoint to another. So I need to perform something like this: CCCallBlock *actionBetweenMoves = [CCCallBlock ...
2
votes
1answer
32 views

changing box2d body shapes dynamically

Is it possible to change the shape of a Box2d b2Body dynamically? I want to do this to achieve the following. i). Increasing the radius of a circle shape at a certain rate ii). Changing the ...
0
votes
0answers
51 views

How to stop position update, when pause button is pressed?

I have this code to make the particles follow my b2body object: -(void)updateMagicFruitParticlePosition:(ccTime)dt{ if (!gameManager.isPaused) { magicFruitParticle.position = ...
-3
votes
0answers
37 views

Generating coins like tiny wing game

I'm working on a 'Tiny wings' follow this link :"http://www.raywenderlich.com/32954/how-to-create-a-game-like-tiny-wings-with-cocos2d-2-x-part-1" I'm currently having problems generating items auto, ...
0
votes
1answer
20 views

cocos2d SDK, iOS template is missing

I've installed cocos2d SDK (stable version cocos2d-iphone-2.0.tar.gz) and its templates but just three templates added to my xcode and all for Mac but another option for iOS supposed to be installed, ...
0
votes
1answer
38 views

Sprite's bounding box stays

I'm using bounding boxes in cocos2d to detect collision between a ball and another sprite, but when I use [self removeChild:Row4Tile1 cleanup: YES]; the CGRect stays there, while the sprite is ...
0
votes
0answers
17 views

how to make breakout clone (cocos2d-javascript) example cross-platform?

I cannot seem to figure out how to convert the code at the end of the 4 part tutorial on the cocos2d-javascript dot org website to another platform. I am trying to convert it to see the performance of ...
0
votes
2answers
36 views

RunAction,CCCallFuncN with multiple Variables - Cocos2D

Is there any way you could send 2 parameters with RunAction? You see im trying to move a sprite with a label on top, and I have made separate functions for each. Similar to this. [sprite ...
0
votes
1answer
25 views

Cocos2d-iphone sprite moving in wrong direction

cocos2d version 1.0.1 xcode 4.6.2 iphone 6.1 simulator deployment target 4.3 I have written simple code for my game, in which I am trying to make a sprite move left by 10 points when i touch on the ...
0
votes
1answer
31 views

Cocos2d 1.0 to cocos2d 2.0 source port

I have below function in cocos2d 1.0, it is not compiling in cocos2d 2.0. Anyone help me to get same for cocos2d 2.0. void ccFillPoly( CGPoint *poli, int points, BOOL closePolygon ) { ...
-1
votes
2answers
22 views

Compile time error while integrating Level Helper code in Cocos2d project

I am trying to add Levels into my cocos2d game using sprite builder and level helper. After I add all the files into the project that are generated by level helper, my project starts giving me error. ...
-3
votes
2answers
39 views

Autorotate not working on iPad 2 ios6 but working on ipad ios5 [closed]

The game is working fine on an iPad ios5, but it isn't rotating on iPad2 ios6. Any advice what my problem is?
0
votes
1answer
14 views

CCAnimationCache: how should I use it?

I have noticed that "purgeSharedAnimationCache" method call sets the "sharedAnimationCache_" to nil. +(void)purgeSharedAnimationCache { [sharedAnimationCache_ release]; sharedAnimationCache_ ...
0
votes
0answers
19 views

Making “smooth” clipping (eg. using glsl shader)

I have a scroll view (similar to table view), which changes the opacity of the object that is going out of the scroll view area (eg. it fades out when scrolling out of the layer) and is also clipped ...
-1
votes
0answers
14 views

Cocos2d- sounds stop playing

Users of our cocos2d (v1.1.0-beta2b) game are reporting (just a small percentage of our users) that all sounds suddenly stop playing during game and never comes back until the users close the app ...
-6
votes
0answers
37 views

I want to turn an image 190 degrees when pressing a image in xcode? [closed]

I want to turn an image 190 degrees when pressing a image ?. its a card game ? when we press a card it has to show other side of card ?? how to turn back card how to give images for front view and ...
0
votes
1answer
17 views

Issue with b2body shape of unwell shaped objects (BOX2d + COCOS2d)

How to set b2body shape according to inconsistent shape of objects so that it gives perfect collision? Answer was : user physicsEditor / texturePacker followed steps and used these tools. now there ...
-2
votes
1answer
52 views

Need to place a Bomb in cocos2d game continuously by pressing bomb button

Right now am placing the bomb after removing the first one ,now thw requirement is to place the bombs continuously and that bomb has only one sprite sheet,there am getting problem like if first bomb ...
0
votes
1answer
21 views

How to set boundingbox for a layer?

I've created a Joystick class based on a CCNode with the following characteristics. -(id)initWithLocation:(CGPoint)l { if (self = [super init]) { self.position = l; ...
-1
votes
0answers
22 views

Is it possible to learn cocos2d javascript through a cocos2d-iphone book/tutorial? [closed]

I am looking to learn cocos2d javascript. I know it's still in its early stages and that documentation is still a work in progress but i was wondering if it would be a good idea to learn cocos2d ...

1 2 3 4 5 99