0
votes
0answers
16 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
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 ...
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
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 ...
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
556 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
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 ...
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 = ...
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 ...
-3
votes
2answers
37 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
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 ...
0
votes
1answer
39 views

how to populate an array with return value objects

In the method below I add objects to an array using the switch-case. -(void)addBall { switch (ballKind) { case greenBall: [ballArray addObject:[self ...
0
votes
1answer
22 views

Cocos2D loading multiple scenes

I am creating a game and while implementing both iPhone 5 and non iPhone 5. In my app delegate I have the following: CGSize winSize = [[CCDirector sharedDirector] winSize]; NSLog(@"Height: %f", ...
-1
votes
0answers
29 views

can't access arc4random after including <stdlib.h>

I have included #include <stdlib.h> #include <math.h> in my header class but I can't access arc4random in my code. I don't know what's causing this. Please help if you can.
0
votes
2answers
38 views

CCSprite in NSDictionary doesn't react to the BoundingBox

I have an NSDictionary (allSprites) with a lot of Sprites (spriteX) and in my Touch Method I want to check whether the sprite was touched. My problem is that it doesn't react to the boundingBox. I ...
-1
votes
0answers
34 views

Cocos2d: CCMoveTo Move Objects on a Curved Path [duplicate]

Is there a way using cocos2d to move a sprite along a curved path, similarly to the way CCMoveTo moves an object on a straight path? I'd preferably like to move the object in an S shape from it's ...
0
votes
1answer
50 views

Getting memory warnings after starting a new Cocos2d-iPhone project in ARC. Beginner

Have recently been teaching myself objective-c in order to learn Cocos2d. Started a new project to teach myself the basics with a classic falling gems tetris-like game. The first step I took was to ...
0
votes
0answers
34 views

scrolling and pan/zoom in single scene cocos2D

I am currently working on my first IOS app and have sort of hit a 'brick wall' if you will. I am using Cocos2D for most of my graphical interface do to my preference and ease when working with ...
-1
votes
2answers
51 views

mixing objective c code with box2d cocos2d [closed]

I am newbie in box2d cocos2d for iOS, but comfortable with objective c. I am currently trying to create a aquarium using objective c and little bit of box2d cocos2d codes. My plan is to create the ...
0
votes
2answers
35 views

Adding a CCSprite (NSObject) to a MutableArray crash

I have a "bomb" CCSprite in its own class(If people who doesn't use cocos2d reads this, CCSprite is a NSObject pretty much). The CCSprite file looks like this: Bomb.h: #import ...
0
votes
2answers
42 views

Iterate all available tiles in cocos2d using CCTMXTiledMap

I'm using the CCTMXTiledMap class to load maps into the cocos2d game that I'm making. As part of the process, I would like to iterate through the properties of all available tiles in the tile sets ...
-1
votes
2answers
44 views

Randomly scan through every coordinate

TL;DR Randomly access every tile in a tilemap I have a way of generating random positions of tiles by just filling an entire layer of them (its only 10x10) then running a forloop like for (int x = 0; ...
0
votes
3answers
48 views

How to run two methods in sequence at time delay?

[self goToStage:currentStage]; [actor deathAnimation]; I have these two methods. I want to call it one by one in sequence. When one is completed after second one is started. //this method used in ...
0
votes
0answers
35 views

CCSprite overrite on scene cocos2d-iPhone

My App is generating sceenshoot of my game.and when i scale up my sceenshoot(CCSprite), other controls like CCMenu doesn't work.I guess CCSprite(screeenshoot) overrite on my scene. How to control my ...
0
votes
0answers
30 views

cocos2D game freeze

I have a model object that stores an array of X,Y positions. The positions are arranged in a grid fashion. The model also has a givePositionForBlock method, which I use to set the position of tiles ...
0
votes
1answer
58 views

CCSequence not waiting for action to finish before next one starts

I am writing a blackjack game using cocos2D. Im using CCSequence a lot and in numerous places in my code have issues with it. The problem I'm having is that one action is firing before the previous ...
1
vote
5answers
92 views

NSArray removeObject removes all objects in array

My project creates a bomb, an explosion, then checks for collisions in the explosions and finally delete the bombs that didn't get hit in a collision. This is explained in more detail here. The ...
0
votes
1answer
58 views

Setting the text of a CCLabelTTF in Cocos2D

I'm trying to create CCLabelTTF where the text changes as the story progresses, but I'm having trouble setting a simple piece of text to it. The label currently displays (null) and I can't seem get it ...
0
votes
2answers
44 views

How to animate a single tile in a TMX tile map?

I have searched around the interent and this question has been asked many times before, but either I could not understand the answer or it led to a dead end. Right now I have a standard TMX tile map ...
1
vote
1answer
67 views

Deleting the proper CCSprite from an array in a schedule

Before I explain my issue, I made this very not neat illustration of how my project works - My issue is - when the time that I want to check damage is up, I want to delete that object from the ...
1
vote
1answer
36 views

Is it possible to use cocos2d transitions on a CCNode?

Every example I see on how to use transitions is with CCScene like this: [[CCDirector sharedDirector] replaceScene:[CCTransitionCrossFade transitionWithDuration:0.5f scene:[NewScene scene]]]; My ...
0
votes
0answers
28 views

Reusing sprites when using a lot of them

I am in front of a problem when adding sprites on my game layer. When the game starts it's initialize a two dimensional array (that I created) and put 30 sprites in it (5 columns, 6 lines). It's ...
0
votes
4answers
81 views

How can I pass multiple objects to a delayed method?

How can I pass -(void)explosionFromPoint:(CGPoint)explosionPoint withSprite:(CCSprite*)sprite; in a [self performSelector:@selector(//Right here) withObject:nil afterDelay:3];? You cant put ...
0
votes
1answer
61 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
53 views

How can I create multiple instances of one sprite

I am making a CCSprite (which is supposed to represent a bomb) on double taps, like this. - (void)handleDoubleTap:(UITapGestureRecognizer *)doubletapRecognizer { [self placeBomb]; } ...
1
vote
3answers
80 views

How can I add a delay before it continues

Is there a way in the normal obj-c or cocos2d to make a delay inside a if-else block? Like if ([self isValidTileCoord:cTileCoord] && ![self isWallAtTileCoord:cTileCoord]) { [self ...
0
votes
1answer
28 views

Overlay View using Frameworks in iOS

I have created a framework (static library) that presents an overlay view on top of the calling delegate. It does so with the following code: [[[self delegate] view] addSubview:overlay.view]; I ...
0
votes
0answers
28 views

UIGestureRecogniser kills CCTime

I am building onto the CatMaze project from this RayWenderlich tutorial. I am trying to add UIGestureRecognizer with this tutorial. I've done everything with UIKit down to the point where you add ...
0
votes
1answer
75 views

Correct collision handling

First of all, this will be Open Source, and you will be mentioned for the help. We've been programming a Super Mario Remake for the iPhone with Cocos2d for school. It looks pretty great, and we ...
0
votes
0answers
64 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
41 views

Why am I getting this error? CCSprite copyWithZone unrecognized selector sent to instance

I'm having a tough time figuring out why I'm running into the error: CCSprite copyWithZone unrecognized selector sent to instance I would like to keep a reference to the rectangleSprite in the ...
0
votes
0answers
40 views

How to set value of a property that's a custom object

I'm trying to keep track of which sprite a user has dragged/dropped on top of the "Rectangle" objects. I thought the easiest thing to do would be to add a property of the same type "MySprite" to the ...
0
votes
1answer
53 views

SLTwitterComposeViewController message sent to deallocated instance

I'm working on a cocos2d project on iOS6 and it crash time to time while I'm trying to share something on twitter. It only crashes on physical device (iOS 6.1.3) It runs without any problems on ...
0
votes
2answers
52 views

detect collision with sprite in sprite sheet

I have a sprite sheet in which there a four images(bat1,bat2,bat3.bat4) , in Image there is a person with holding the bat and when all images are combined in animation then it looks like playing ...
0
votes
2answers
87 views

Cocos2D-iPhone CGRectContainsPoint detecting touch outside sprite bounds

Could someone please help me. I am trying to use a CCSprite as a movement controller that I can drag (Left/Right) to move my player character. Problem is when I touch outside the CCSprite it still ...
1
vote
0answers
70 views

Cocos2d sprite flicker while moving

I am using cocos2d-2 to move sprites from left to right. Here is the code I am using in the update method to move the sprites, -(void) update:(ccTime)delta { for (CCSprite* sprite in ...
0
votes
2answers
72 views

Cocos2D: Multiple actions: CCMoveTo CCAnimate

I don“t understand, I absolutely cannot get this to work, I want a sequence of actions that plays an animation and moves the sprite using the CCAnimate ans CCMoveTo classes. Is there a bug or ...

1 2 3 4 5 27