Cocos2D is a Python based open source framework for building 2D games and graphical applications for Windows, Mac and Linux desktop computers. Cocos2D is published under a BSD license.

learn more… | top users | synonyms

0
votes
0answers
9 views

Cocos 2D - CCSprite makes crash with lldb

Hi I am kind of new to cocos 2D. I Use cocos2D v 2.x and created an app from cocos2D template. I Just added 5 CCSprite to my scene and after couple of minutes my fps gradually decreases below 10.0 ...
0
votes
0answers
14 views

Cocos2dx CCRendertexture and framebuffer object problems. My new texture doesn't look the same. Alpha values are incorrect

I'm having a bit of a problem trying to use the CCRenderTexture class from Cocos2Dx for the iPhone (which, as I understand it, is just a FBO class). I have a class that derives from CCSprite. ...
0
votes
3answers
30 views

Cocos2d detect touch on a specific sprite

I have this sprite that I am trying to detect if user touched it and post an NSLOG. I have read some cocos2d posts on detecting sprite touch on stackoverflow, but I got a bit confused and don't quite ...
0
votes
3answers
29 views

Do you have to use a sprite sheet with CCSpriteFrameCache?

Looking through tutorials and the CCSpriteFrame and CCSpriteFrameCache documentation, it looks like I need a plist like what's generated using TexturePacker. Is there a way to just add individual ...
0
votes
0answers
14 views

iOS multiplayer crashes after connecting with same player again (cocs2d)

I'm implementing multiplayer for my game. Here's my situation: Player 1 invites his/her friend, Player 2, to play in Multiplayer scene After finish, there is an option to rematch which is taken ...
1
vote
1answer
35 views

C++11 for xCode errors

I want to use std collections, for example std::vector in my xCode 4.5 project. Following the explanation here no type named 'shared_ptr' in namespace 'std' I changed my compiler ...
0
votes
1answer
22 views

Modal dialog with buttons failing

I have layer, on which I placed sprite(yellow) and child menu("Main Menu: button), to look like modal dialog. There are also number of buttons, menus below that layer. What I want to achieve is ...
0
votes
3answers
30 views

convert game from portrait mode to landscape mode

I am new to cocos2d game developing. Here, my game is developed in portrait mode. I just want to convert landscape mode. and tell me which method is used instead of ...
0
votes
0answers
25 views

Is that hard to understand and use cocos2d-x(Lua) if I never learnt about C++ but I'm good at lua? [closed]

It's a little hard for me to understand the C++ code like :: std >> or something like that. But I ran the Helloword app by cocos-2dxLua. And tried change some code, it really worked follow my idea. ...
1
vote
0answers
39 views

Adding cocos2d to an existing xcode project

I want to add cocos2d to an existing project. I found this: Adding Cocos2D only to already existing project? which looks like exactly what I want.. however, I downloaded cocos2d from the website and ...
0
votes
1answer
56 views

Can't Access Function from another Class in Cocos2D

I've implemented 3 classes. -Scene.m & .h Scene.m: (has HudLayer & BackgroundLayer properties on the header file) -(id)init{ self = [super init]; if(self != nil){ ...
0
votes
0answers
25 views

Cocos2d-x | Errors when Running on Emulator

I am new to cocos2d-x. I configure cocos2d-x in Windows 8 / Eclipse and I use android-ndk-r8b. I created a project (HelloWorld)that is running.The program when run in the emulator gives the following ...
0
votes
0answers
27 views

cocos2d for iphone touch detection on a sprite

I am using ccTouchesBegan and ccTouchesEnded methods to register touches. Everything was ok until I placed some buttons(ccmenuitems) on my node. now when i place my finger down on a button and then ...
0
votes
1answer
24 views

Invisible layer in Cocos2D

I am new to cocos2d and i went through many tutorials on tiled map . And than , I have made one tmx map using tiled. In that i made one meta layer. Now, i stuck at one issue, i want to invisible my ...
0
votes
1answer
20 views

How to make a screen appear moving right side after splash screen in android cocos2d

i am developing a game App using cocos2d android. After loading screen i have a menu screen and two more screen i need to get some effect like After the splash screen when it moves to next screen i ...
0
votes
0answers
15 views

Using Cocos2D Dynamic Texture as background for View Controller

I have a dynamic texture I created with CCRenderTexture. I would like to use it in the top half of one of the View Controllers in an app. Currently I have: One app with a ViewController that ...
0
votes
1answer
20 views

Cocos2D Score Counter will not count score

I making a game in Cocos2D. I made a score counter on my screen, and when I hit an enemy it adds a point to the score. When I run it, and when I hit an enemy the project terminates. It is probably ...
0
votes
2answers
27 views

“anynchronous” return of a function inside a block

I have tested several times to take a screenshot on Cocos2D. The only one that works for me is by adding this category to the project: HEADER /* * CCNode+Screenshot for cocos2d: ...
0
votes
0answers
22 views

How to create a bezier line with a texture in Cocos2D

Im working in an app using cocos2D and want to know how to apply a texture to a line or a bezier line (ccDrawRect and ccDrawCubicBezier respectively). My draw code is so easy : ccDrawColor4F(_r, _g, ...
1
vote
1answer
30 views

Animating multiple sprites

This is the code for creating single sprite, then animating it: [[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"crowfl.plist"]; CCSpriteBatchNode *spriteSheet = ...
0
votes
1answer
24 views

How to config target's build setting using CocoaPods?

I'm trying to use CocoaPods with cocos2d template project. When I pod install, I get some warnings, like: [!] The target `MyProject [Debug]` overrides the `ALWAYS_SEARCH_USER_PATHS` build setting ...
1
vote
0answers
28 views

Update texture in fragment shader in Cocos2d

I'm trying to update texture in fragment shader without any luck. Looks like shader reads texture just once and then no updates. Here is my code: Shader init CCGLProgram *shader = [[CCGLProgram ...
2
votes
1answer
19 views

How to get sprites react to touches in cocos2d android?

i have 1 gun when tap on any point on the screen bullets fires out, but according to my requirement there are 3 guns(sprites) when touched on any of the sprites bullets must fire up, when googled i ...
-1
votes
1answer
27 views

-1 > 8? comparing two integers, negativeOne and eight diff than (negativeOne + 1) and (eight + 1)

Here's the code: while((fingerYLast - fingerAt.y) > fingerMoveThresh) { if( (activeCard) < (allCardList.count - 2)) { [self sayOut:@"TRUE"]; ...
0
votes
1answer
35 views

Cocos2d, iOS 6.1, GameCenter Crash When Showing Leader-board

I am trying to show a Leader-board in my Cocos2d Game. The code below works correctly on iOS 5.0. However on 6.1 it crashes with the error message below. Thanks in advance for any suggestions. * ...
0
votes
0answers
16 views

Creating a sub-window inside cocos2d

I'm creating a level-select screen that has a scrollable map (sort of like how google maps works). I have the map at the very bottom layer, followed by all the map icons, followed by a black overlay ...
0
votes
0answers
14 views

Cocos2D How To Change First Responder Class

During my game i transition from one scene to another. In my second scene I don't have the option to say: self.isTouchEnabled = YES; So when i touch the screen it does not call: - (void) ...
2
votes
1answer
23 views

Cocos2d How to Switch Scenes

How do i switch scenes in cocos2d? I have my main class, "HellowWorldLayer.h/.m" , but i can't seem to switch scenes correctly. I have tried : [[CCDirector sharedDirector] replaceScene:[Race node]]; ...
0
votes
1answer
16 views

Deducting lives on Cocos2D

Say If I had an apple falling from the top of the screen and the player needs to catch it before it is gone of the screen at the bottom. I want to give the player 3 (Lives) chances to catch the apple. ...
-1
votes
1answer
21 views

How to add multiple CCSprites inside CCArray

If I for example had fruits in my game and would like to add all fruit CCSprites to the CCArray how would I do that? say I have the following code: CCSprite *Apple = [CCSprite ...
0
votes
0answers
13 views

CCFollow not following

I'm building a game with cocos2d and box2d and trying to use CCFollow, using the tutorial code out there. (http://www.learn-cocos2d.com/tag/ccfollow/) But it's not working. My code: CGSize winSize ...
0
votes
2answers
21 views

how to display ad banner (buzzcity) in cocos2d project?

is there a way to put UIView by converting it to EAGLView or should i have to add CAlayer ? whats the best way to do it? any Example codes related to BuzzCity for Cocos2d would be nice what i have ...
0
votes
0answers
10 views

CCparticleexplosion not working in CCtouchesmoved method in cocos2d Android

I created a CCparticle explosion method in my game , it works fine in my game, but when i put it in CCtouchesMoved method(as i want the particle system when i touch and move in the game), It shows the ...
0
votes
1answer
21 views

How do I pause all actions while fading cclayer then resume gameplay in cocos2d?

I have this: -(void)fadeBackground { ccColor4B color = {0,0,0,255}; CCLayerColor *fadeLayer = [CCLayerColor layerWithColor:color]; [self addChild:fadeLayer z:7]; fadeLayer.opacity = ...
0
votes
1answer
11 views

Cocos2D: Basic animation from spritesheet

I am looking to do a basic animation from a spritesheet. I got most my formatting/code from a tutorial I was following online, however it only did one directional motion. Basically I am looking to ...
0
votes
1answer
25 views

How to get UITouch location from UIGestureRecognizer

I want to get the UITouch location of my tap from UIGestureRecognizer, but I can not figure out how to from looking at both the documentation and other SO questions. Can one of you guide me? - ...
1
vote
0answers
38 views

Sparkles and shine cocos2d shader

I have started to work with shaders(cocos2d 2.1) and trying to make sparkles and glossy moving effect like in this game: game with cool shiny effects There are a couple of issues with that: Is there ...
0
votes
1answer
38 views

Cocos2d iPhone: CCWave action with sprite

I am trying to apply ccWave action to my code. But this action is applied to whole screen. I just want to apply this action to sprite only. Here is my code id waves = [CCWaves actionWithWaves:5 ...
0
votes
0answers
22 views

Collision between a sprite and a tilemap with Cocos2d and Box2d

I have the following map I made in Tiled, and then added to my project: map = [[CCTMXTiledMap alloc] initWithTMXFile:@"FirstLevel.tmx"]; [self addChild:map]; I also have the following object which ...
0
votes
0answers
27 views

How to incorporate storyboards into a cocos2d 2.0 and travel from one to the other?

I am looking for help in trying to leave cocos2d back into main storyboard. I have built a small app with storyboard that can lead into a game scene following fidgetware's tutorial ( How to ...
-2
votes
2answers
62 views

Objective-C - Don´t get access to an Object from another class [closed]

i have got a question. It would be great if somebody could help me. I have a class myObject and a class HelloWorldLayer. In the HelloWorld i want to call a Method doSomething on myObjectX. But with ...
0
votes
1answer
19 views

How to get image.plist in android cocos2D

I am developing a game where i need .plist as in this line cache.addSpriteFrames("ninja.plist"); since i am new i dont know how to get .plist in cocos2d. Can any one help me how to get .plist for ...
0
votes
2answers
58 views

how to connect dots and make a line and remove lines in ios? [duplicate]

how to connect dots and make a line and remove lines in ios? How to to make flow line type of game for iOS? this is link http://www.flowanswers.com/ This type of project have assigned to me. ...
0
votes
2answers
58 views

Rotating stars like Cut the Rope

I am working on cocos2d-iPhone. I want to rotate stars with respect to its y Axis like it is in CUT THE ROPE game. I know we can rotate star to its x axis simply by ccRotateto action. Here is the link ...
0
votes
0answers
43 views

Cocos2d side scrolling game best way to implement it?

I was wondering if its better to add sprite by sprite(spritesheets) for the each level of the game? or is it better to add segment by segment for the levels in the game? The thing is that i want to ...
0
votes
1answer
29 views

Objective-C/Cocos2D - CCAnimate actionWithSpriteSequence - Don´t understand @“a00%02d.png”

Can somebody help me with plist and [CCAnimate actionWithSpriteSequence:@"a00%02d.png" numFrames:10] I have a plist with 3 different Animations for my Character. first Animation: a0001.png - ...
0
votes
1answer
33 views

Submitting an application in multiple language in AppStore

I have develop a story app in cocos2d which have sounds, text and images. I have already submit English version of the application on appStore. Now I want to submit same application in different ...
0
votes
0answers
20 views

Overlapping of Box2d bodies, and get stuck

I'm using box2D with cocos2D in my iOS game. While creating box2d bodies randomly on the screen(as they are too much in number) some time two bodies are created so closely that they got stuck with ...
0
votes
1answer
8 views

CocosBuilder adding files to existing project

I have an existing CocosBuilder project and I wish to add an image (png) to it. I've tried adding the image in the projects directories but it doesn't show up in the project yet new directories do. ...
-2
votes
0answers
53 views

A weird result about void* GetUserData() from box2d in cocos2d-x

I have a hero class which inherits two classes called BaseEnity and CCNode. BaseEnity is just a simple class that contains a tag which I use it to identify objects. class BaseEnity { public: int ...

1 2 3 4 5 85