ccsprite is a class inheriting from CCNode. It is basically a 2d image, which normally represents characters or objects displayed in the cocos2d games. CCSprite contains various functions like MoveTo, Rotate, etc with the help of which we can easily perform several actions. You can find the ...
4
votes
2answers
1k views
Cocos2D Rotation and Anchor point
The problem that I have is that when ever I change the anchor point sprite automatically rotates with respect to the current anchor point. And I don't want that to happen.
The steps that I followed
...
3
votes
2answers
122 views
Objective C - app works in simulator and on other iPhones, but won't run on my own iPhone 4
My app works fine in the simulator, and on other devices. I have an iPhone 4 with the latest iOS update, and the app refuses to run on my device.
It seems to be a problem surrounding retina-display ...
2
votes
0answers
100 views
How to Save CCSprite as PNG [closed]
I created CCSprite and add it to the main view.
Then I want to see the sprite image, so I saved it to PNG
But lots of them doesn't saved correctly.
Only show white background.
I can't know the reason, ...
2
votes
1answer
70 views
Find the closest CCSprite
I am trying to find the closest "player" to a "ball" and each of these objects are CCSprite Objects. This is my first app, so if there's a better way to do this, feel free to suggest it :)
Here's my ...
1
vote
1answer
20 views
cocos2d can't add sprite to another sprite
I have a background that extends CCSprite from the cocos2d framework. And I have added this sprite to the gamelayer. Now in this background class I try to add other CCSprites named Star like so:
...
1
vote
0answers
47 views
cocos2d-android: how to play/pause a game state
I am new to cocos2d-android. I want to play or/and pause my game . How I fix it ? What would be the method? Thanks for any reply.
1
vote
2answers
37 views
Flip CCSprite Horizontally After Adding to Layer
I'm creating a fish for an app that swims to random locations on the screen. Before the fish begins swimming towards the next location, it rotates to the angle between its starting point and the ...
1
vote
2answers
50 views
Adding and accessing CCSprites
I'm having trouble inserting multiple children of same sprite and accessing it (or setting positions for them on runtime). Kindly advise any suitable method preferably point out my mistake. Here is my ...
1
vote
0answers
68 views
Objective C - CCSprites scaling and displaying differently in different parts of my code
I'm building an app that has a main menu layer and a background layer (for gameplay). I am loading the exact same CCParallax node code in both places, using the same images to create an infinite ...
1
vote
3answers
48 views
cocos2d CCSprite Collision issue
[I have 2 objects, both of them subclass of CCSprite.
Each one of them has a CCSprite variable that actually represents the sprite image
Example:
@interface Player : CCSprite
{
CCSprite *sprite;
...
1
vote
1answer
27 views
New Sprite Frame remains as same of previous Sprite Frame
I am beginner in the Cocos2D gaming. When I change the Sprite with
[sprite setTexture:[[CCTextureCache sharedTextureCache] addImage:@"anotherSprite.png"]];
When I am changing this image in the ...
1
vote
0answers
112 views
Cocos2d sprite with CCAnimation skipping when being moved only on device
I wrote a demo application that works perfectly on the simulator, but when I put it on an actual device, the dice skip around. Here is a video as an example. After I restart the app, the animations ...
1
vote
3answers
186 views
cocos2d sprite collision
I have an Array of CCSprites that being displayed all at once.
Every sprite has a movement path, a movement path is a random point on screen.
All the sprites are moving all at once to random points ...
1
vote
1answer
221 views
Add rounded corners to UIImage?
I know it is possible to have rounded corners on objects like a UIImageView (I have done it before). But in this case, I need to have my square UIImage to have rounded corners. I know it is more ...
1
vote
1answer
117 views
cocos2d : why convertToGL, and why addChild CCSprite before its body?
i'm starting to learn cocos2d, and i was wondering why actually we use convertToGL from CCDirector, [[CCDirector sharedDirector] convertToGL: touchLoc]; when we already have the [touch view] from ...
1
vote
1answer
93 views
Problem in loading more number of PNG's in Cocos2d Game.Suggestion needed for “PNG to Pvr.ccz” convertion
In my Game i'm loading around 13-15 Png's which include few sprite sheets(6-7) of 2048x2048 dimension and others 1024x1024 and some 512x512.
and now i'm facing the huge memory warning.
There is no ...
1
vote
3answers
292 views
Cocos2d show only a part of a CCSprite
Is there any possibility to show only a part of an CCSprite?
It seams that contentSize property doesn't have a good result.
1
vote
2answers
339 views
Cocos2d: CCSprite initWithFile in CCSprite subclass crashes
I have cocos2d project with custom CCSprite subclass:
MyCustomSprite.h:
#import "cocos2d.h"
@interface MyCustomSprite : CCSprite
@end
MyCustomSprite.m:
#import "MyCustomSprite.h"
@implementation ...
1
vote
1answer
118 views
What causes a sprite to be distorted, when no scales are applied
A picture is worth a thousand words. Here's mine:
Above depicts two sprites,
the one on the centre right is the player, and the one on the centre left is an AI player.
Both of their ...
1
vote
1answer
117 views
convertToNodeSpace not working properly
Using this code (tweaked a little) i can't get a constant Y value. it keeps changing. X works perfect but Y is really skewed.
Im making tiles about the size of a screen. and when i grab and drag it ...
1
vote
1answer
181 views
CCsprite anchor point problem
I have some problem with Anchor point..
i have a sprite and i need to calculate the anchor point for this sprite around the screen center.
How can i calculate the anchor point?
1
vote
1answer
257 views
Implementing Touches on Multiple CCSprites in Cocos2d the right way??
I am developing my first game with cocos2d and i have run into a problem of which i cant seem to find a right solution. i am adding and animating a CCSprite every second from top of the screen to the ...
1
vote
2answers
349 views
How to change a CCSprite's position during a move action
Is it possible to change a CCSprite's position during a move action, like CCMoveBy? I have a subclass of CCSprite that cycles through a bunch of actions, some of which are moves. I check to see if ...
1
vote
2answers
104 views
UIButton of previous scene overlaps CCSprite
I have a UIButton that moves around randomly on the screen. On clicking on the button, a new scene is loaded that, for now, contains a CCSprite. Here is the code:
//in init
CCSprite *a = [CCSprite ...
1
vote
1answer
674 views
Cocos2D set sprite position in relation to another sprite
I am sure this is an easy question for anyone who knows anything about math and programming (Cocos2D), but when it comes to math I'm the village idiot.
My game has a ship that flies around in space. ...
1
vote
0answers
441 views
CCSprite Color Blend Similar to kCGBlendModeColor on UIImage
I am trying to overlay color on a sprite image and have questions about how to blend the color with the sprite. I've used the following "updateImageTint" routine to overlay color on a UIImage and the ...
1
vote
1answer
110 views
How to construct a 3D background by tilting CCSprite around X and/or Y axes using cocos2d-iphone?
I'm trying to create a 3D background with a lava texture. It needs to be tilted around the x axis by 90 degrees to give an illusion of floor. It needs to be able to scroll in any direction infinitely ...
1
vote
0answers
310 views
Unable to load the frame cocos2d for Android
I am trying to draw one sprite from atlas.. I created with Zwoptex the atlas and the plist file.
put the two files in the assest folder..
In the code I create new GameScene class
and try to load ...
1
vote
3answers
1k views
Cocos2d draw a polygon using CCSprite
Can you help. Want to draw a polygon (beams at different angles) and apply box 2d body to it. Can you please let me know how to create a CCSprite with a polygon shape
Any examples would help
Cheers
0
votes
0answers
14 views
Drag and drop for CCSprite in xcode
In my application i have used CCSprites. They are defines in the proper format and ccTouchesBegan functions properly. Then I added the codes for drag and drop. they are
- ...
0
votes
0answers
16 views
Cocos2dx Inherited CCNode class not rotating around around its center?
I'm at a bit of a loss here, forgive me if this has already been asked - i've have searched google high and low but i cant find anything?
i'm trying to rotate a group of sprites that are generated in ...
0
votes
2answers
20 views
Changing sprite difficulty depending on level
In a game that I am making, the moment the game scene initializes, a random enemy will be chosen out of a list. Then, it will run a method that finds the current level. Then, it will find the number ...
0
votes
1answer
21 views
Animating a Sprite with a Sprite Sheet gives an uknown error
I am trying to get a sprite to animate itself forever. There are no problems, and it builds fine. I get past the menus and when I click on the scene that has my sprite that I want to animate on it, it ...
0
votes
2answers
57 views
Animating a sprite after a touch?
In a game that I am making whilst using Cocos2d, I have a sprite down the bottom of the screen that stays still. When the screen is tapped, I would like the sprite to move to where the screen was ...
0
votes
0answers
32 views
cocos2d-android: how to use a single sprite from a spritesheet
I am new to cocos2d-android. I want to use a sprite from my sprite sheet. I also use plist file . How I do it?
0
votes
0answers
36 views
Turning a user-selected file into a CCSprite
I'm creating a mac desktop application using Xcode 4 and Cocos2d, as well as Interface Builder. I'm trying to take a user-selected file and turn it into a CCSprite.
My code for selecting the file is ...
0
votes
1answer
65 views
remove sprites with animation, different z order
How do I remove sprites that are on top of each one but with different z order?
The code that I'm using is:
- (void)removeSelectedSprite:(CGPoint)touchLocation {
CCSprite * newSprite = nil;
...
0
votes
1answer
49 views
Define sprite shapes for touch
I'm trying to add shapes to my sprites, wich are in NSArray, using this code:
theSprites = [[NSMutableArray alloc] init];
CCSprite *sprite1 = [CCSprite spriteWithSpriteFrameName:@"sprite1"];
...
0
votes
2answers
105 views
iPhone, Cocos2D - moving sprite left/right while touching screen
I'm new to Objective C and app development so please go easy on me!
I'm trying to make a basic game and need to move a sprite left or right continuously while the user's finger is on the screen - left ...
0
votes
2answers
40 views
Cocos2d iPhone : Sprite initialized weird issue
I am using the tutorial to make one simple app. And unlike the sample app, I want to show my projectile/object from the very beginning instead of on touch. For the same, I am doing like this :
-(id) ...
0
votes
1answer
92 views
How to layer a CCSprite on top of a CCSprite?
In my game, I have a series of avatars, currently each avatar has a small rectangular container to denote that this image is a button and can be clicked.
However, I've realised that I need to change ...
0
votes
1answer
69 views
Changing image of CCSprite changes its size?
I am trying to have a CCSprite be the album artwork sprite for when my iPod music plays but the problem is, when I change the image from the NoImage.png to the actual album artwork, the CCSprite seems ...
0
votes
1answer
41 views
pixel recognize in cocos2d?
How to recognize the presence of a color pixel and no color pixels?
I have two sprites, 1 ball and the second sprite is a map, if no color then the ball just flies and all, but as soon as there is a ...
0
votes
1answer
104 views
Cocos2d. Use 1 sprites many times for create a random map?
I generate the length of the maps randomly, adding to the main Sprites chaild sprite, as a result of my fall FPS and everything slows down.
Can I use a sprite many times it does not allocate ...
0
votes
1answer
37 views
Change a sprite texture, with image from a sprite-sheet
I'am stuck!
This is how I create a sprite with texture form a sprite-sheet. But how do I change the sprites texture later on?
I have tried using setTexture but I can't get i working.
...
0
votes
1answer
118 views
Cocos2D prevent sprite from going off-screen?
Is it possible to prevent my CCSprite from going off-screen? I already allow it to go offscreen on the left and right so that is fine but I just want to stop it from going off screen on the top and ...
0
votes
2answers
55 views
(Cocos2D) Sprite not perfectly sitting on top of other sprite?
Something is very odd in my app. I must have looked over this line countless times and I swear I do not see anything wrong with it. Pretty much at the click of a button, this code would get executed ...
0
votes
3answers
106 views
Make CCSprite follow another CCSprite when touched?
What I want to accomplish is to make my CCSprite follow another CCSprite when it is touching it. Now what I mean by follow is, lets say there is an animation of another CCSprite moving up the screen. ...
0
votes
2answers
69 views
Cocos2D - Efficient Sprite Sheets with Transposed Sprites
I have just started using sprite sheets in Cocos2D in an attempted to better utilize the texture memory and the artist generating my assets has a script that he used for some previous games in ...
0
votes
0answers
65 views
C++ (Coco2d-X): how to declare instance variables (error message: “Use of undeclared identifier _mySprite”)
I am trying to develop my game using Coco2d-X. I am new with both Coco2d-X and C++ :)
I want to declare a CCSprite as instance variable in order to be able to use it in my whole class.
Up to now, I ...