Tagged Questions
0
votes
0answers
24 views
Moving a sprite by touching anywhere on the screen
In my game only one sprite responds to touches. How can I make a mousejoint move this sprite/body regardless of where I touch on the screen?
0
votes
1answer
57 views
How to make askew slope image(b2body) in Box2d?
I am new in Box2d and learning myself.
I am learning Box2d from here
I want to make a body and want to give b2body a angle so that it will look like body is stand like skew line, like slope.
This is ...
0
votes
3answers
71 views
Holding pixel data in NSMutableArray/NSArray; memory issues
I'm trying to hold basic information about a pixel inside an object. Basically, (1) whether the pixel is clear and (2) whether the pixel is on what I am defining to be a surface edge. I'm using the ...
0
votes
1answer
23 views
b2RevoluteJoint in cocos2d
I have a CCNode subclass that is composed of a rectangular sprite that rotates around an anchor point. My object gets displayed in the world but I can't seem to get the b2RevoluteJoint working ...
-2
votes
0answers
36 views
Sand Simulation with gravity in z-direction [closed]
I am trying to create a Sandbox Simulation similar to this video
http://youtu.be/QQHo5YJkumo?t=16s
Features are
Sand Particles always live (custom CCParticleSystem or opengl )
Has to perform well ...
0
votes
1answer
41 views
Box2D for Collision Detection Only
I am using Box2D for collision detection only. My code is similar to that in Ray Wenderlich's tutorial here.
I am encountering a problem with this method. Since the code bypasses the Box2D ...
0
votes
1answer
34 views
flying bird with Box2d
i'm writing an arcade game (like we need more of those right?) that uses box2d and cocos2d (ios). i'm trying to make a bird that you view from the top. there is no gravity in the world (the projection ...
4
votes
1answer
86 views
How to make binocular effect in cocos2d?
I need to make binocular effect with blur and scale inside custom frame to follow an object(sprite), like this
Any ideas how to make it?
Great thanks for help!
0
votes
2answers
50 views
Box2D collisions don't fire under low FPS?
So in my game I have Cocos2D + Box2D integrated. I know it is not recommended but I have my b2Bodys follow my CCSprites because I only need the collision part of Box2D. Anyway, using PhysicsEditor, I ...
0
votes
0answers
46 views
how to draw automatic poligon shape from an sprite with alpha ? for an box2d tool
I have started a new project, that will help creating a game from scratch, with just a few lines of code.
I won't make advertising here, because this is not that kind of site, but i will ask a few ...
0
votes
1answer
70 views
Box2d and Cocos2d with faked 3d view [closed]
I am new to ios cocos2d game development, so please excuse my ignorance :). I am trying to create a simple that plays like http://upload.wikimedia.org/wikipedia/en/2/2e/Knights_of_the_Round.png where ...
0
votes
1answer
32 views
Improve Responsiveness of ccTouchesBegan
At the moment, I have a puzzle game, with some objects that are movable using the ccTouchesBegan && ccTouchesMoved method
Called in ccTouchesBegan:
if (CGRectContainsPoint(newBoundingBox, ...
1
vote
1answer
57 views
How to make an b2Body ignore another b2Body?
I have three b2Body-s. Head, chin and one static type b2Body. I add a b2Joint from static b2Body to head and another b2Joint for head and chin. Head ignore static body because collideConnected is ...
0
votes
1answer
42 views
how to remove a box2d Fixture
I have a square barrier that has edges defined at run time based on where the user puts the position and rotation of my barrier.
b2BodyDef barrierBodyDef;
barrierBodyDef.type = b2_staticBody;
...
3
votes
1answer
45 views
Sprite.rotation Not working in box2d
I have an array of Sprites, that the user is allowed to move that is handled within ccTouchesMoved.
When the user has one of the sprites selected (by touching it) they then have the option to rotate ...
0
votes
1answer
74 views
How to define PTM_RATIO according to iOS device
I'm using Cocos2D+Box2D for my game development. As Box2D uses meters instead of pixels, I need to define a pixels-to-meters ratio. So I define a PTM_RATIO at the top of my code:
define PTM_RATIO 32
...
0
votes
1answer
39 views
Create a vector to shoot a projectile at angle of cannon
I need to set a projectile in motion doing this (Box2d):
projectileBody->SetLinearVelocity(b2Vec2(shootVector.x, shootVector.y));
I know the angle (it's the rotation angle of the cannon), and I'm ...
0
votes
0answers
46 views
Files and folders organisation for large project in cocos2d [closed]
I am writing a game with cocos2d and box2d. Game will have at about 50 levels, and I already now have many classes and it keeps growing.
For every game object I have GameParts folder with a classes, ...
-8
votes
1answer
89 views
After updating project to arc getting dyld_fatal_error [closed]
I was following tutorial for updating cocos project to arc, and after updating i getting dyld_fatal_error error. Does someone knows something about this?
0
votes
1answer
46 views
Weird Rotation With Box2D and CGAffineTransformMakeRotation
I'm rotating a UIView using CGAffineTransformMakeRotation and rotation value is coming from a 2D Physics Engine called Box2D (you've probably heard of it). The integration seems to work fine except ...
0
votes
1answer
46 views
Box2d in Xcode - use of undeclared identifier 'toDestroy'
Every tutorial I can find on Box2d says to do this to iterate through the bodies in a world:
std::set<b2Body*>toDestroy; //ERROR
for(b2Body *b = world->GetBodyList(); b; ...
1
vote
1answer
210 views
Box2d and Cocos2d on iOS issues with sprites and positioning
I am creating new sprites/bodies when touching the screen:
-(void) addNewSpriteAtPosition:(CGPoint)pos
{
b2BodyDef bodyDef;
bodyDef.type = b2_dynamicBody;
bodyDef.position=[Helper ...
0
votes
2answers
115 views
In Box2D ball bouncing before hitting the floor
I implemented a basic box2d project in iOS with a bouncing ball, but the ball seems to bounce before it actually reaches the ground. On each progressive bounce it seems to get closer to the bottom and ...
1
vote
2answers
74 views
How do you change the edges of a ground fixture in a box2d ground body
During game play, I would like to be able to change the ground edges in a Box2D world. I have created a ground body and then I am adding a ground fixture to the body. For example, the following code ...
1
vote
0answers
44 views
Jump function in box2d
I'm developing a game on Box2d world. I have player on screen and there is a ground body on bottom of screen.I wanna make "jump" function.I looked many examples but i couldn't find what i want.For now ...
0
votes
0answers
68 views
Box2d Sprite displays not in center of polygon
I have a weird problem when add sprite to custom polygon, it displays not in center of polygone but in left-top side.
Like on that picture: http://pbs.twimg.com/media/BC8onkHCUAAwMVM.png:large
//4th ...
0
votes
0answers
138 views
increase fps on ios using libgdx
I am developing an android game using box2d and its running fine on android phones and tablets. When running the game on iOS devices like the iPhone or iPad performance get pretty bad. I am getting 60 ...
0
votes
0answers
77 views
Collision detection Fail in Box2d
I want to detect collision between bodies, one body has circle shape and 30+ have convex body. Maybe problem is because of detecting collision between circle and convex? Please help, can't find the ...
0
votes
0answers
135 views
Assertion failed in box2d creating b2PolygonShape
My code, written below, causes box2d to produce this error:
"Assertion failed: (area > 1.19209290e-7F), function ComputeMass, file ...
0
votes
1answer
107 views
Multitouch Sprite Rotation with Collision Detection
I'm trying to implement collision detection and a physics-based bounce of one sprite off of another sprite rotated by multitouch. In the image, see that the two yellow dots are the simultaneous touch ...
0
votes
2answers
70 views
Box2d: have sprite follow sprite
I just recently start to learn box2d, I am making a tiny wing clone. and i am trying to make a sprite follow another sprite, and eventually catch up.
since box2d is a whole new api to me, I do not ...
0
votes
0answers
136 views
Box2D: Issues with spring and dynamic body
I'm trying to create a spring for an iOS game with one dynamic and one static body attached to each end. However, the dynamicbody is at a constant standstill, so at the moment I just have two static ...
0
votes
1answer
100 views
Cocos2d + box2D remove sprite from world
Should be easy but i don't have find...
I have a lot of sprites in my world and on a moment X, i need to destroy multiples sprites.
With the code below, i can remove this sprite by tag number:
...
0
votes
0answers
16 views
Left-over profiling code in box2d 2.2.1?
I'm using Box2d 2.2.1. When I profiled my code in Instruments on iPhone HW I found out that mach_absolute_time was called quite intensively. When I looked in the box2d code i found leftover profiling ...
0
votes
2answers
224 views
Box2D / cocos2d animation to a point with rotation
I'm pretty new to Box2D and cocos2d. I'm trying to do something which I thought would be pretty simple, but it is turning out to be more difficult than I had expected and I cannot find a working ...
1
vote
1answer
134 views
How to make path in box2d in iPhone
I have a path which will be on bottom of the screen where insects will walk. But my path is not a straight line, it have ups and down. So how can I my insects walk my jagged line? The black line is my ...
0
votes
1answer
34 views
Touching my fixture fails
I'm trying to tap a falling object in my Cocos2d/Box2d app.
Here's my touchesBegan code:
- (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *myTouch = [touches ...
0
votes
1answer
153 views
box2d spring mesh with texture map
I have an image of a lamp and I'd like to make the base elastic. If a user puts their finger on the base and pulls back, it stretches to a given range. When they let go it snaps back with a certain ...
0
votes
0answers
149 views
box2d bodies behave strangely while dragging on screen
I made a cocos2d-box2d template game while reading Ray Wenderlich's book 'Learning Cocos2d' and I'm stuck. The problem is that when I try to drag bodies , sometimes they behave really stupid.
Actually ...
0
votes
2answers
150 views
CCLayer update method with box2d bodies failure
I'm reading the book:'Learning Cocos2D' from Rod Strougo and Ray Wenderlich and I decided to make my own iOS game with Cocos2d-Box2d.
Now I have a problem that I can not resolve.
I created a class ...
1
vote
2answers
157 views
Cocos2d: graphics tool
I started to learn Cocos2d to develop games and also Box2d; I read some tutorials and I seen that are used two couples of tool "LevelHelper-SpriteHelper" & "PhysicsEditor-TexturePacker".
I ...
0
votes
1answer
90 views
box2d concave body
I am creating a box2d body for my iOS game, that is built from 4 shapes that are convex.
The problem is that it fails when calling the init method.
Here's my code:
@implementation Banan
...
0
votes
1answer
159 views
Achieving Billiard ball simulation with box2d on iOS
using this properties:
b2FixtureDef ballShapeDef;
ballShapeDef.shape = &circle;
ballShapeDef.density = 1.0f;
ballBodyDef.linearDamping = 1.0f;
ballBodyDef.bullet = YES;
...
1
vote
1answer
264 views
Moving box2d body ball
How can I move body ball in box2d like a volleyball without accelerating or dumping (with a constant speed)
Do I need a special formula for this?
4
votes
1answer
123 views
Box2d contact sensor COCOS2D
I have made a Box2D sensor box in cocos2d. I want a fast way of checking if this box is empty. Is there a simple method in box2d to check if the sensor is making any contact with anything else?
0
votes
1answer
85 views
draw debug shapes with box2d in ios, how?
Im using the latest cocos2d iphone 2.0 with box2d (dont know the version).
I try to display the shapes in debug mode, how do I do that?
Regards
Mirza
1
vote
3answers
139 views
Any Good Book For Cocos 2d and Box 2d?
I am new to iOS programming. I want to learn gaming. So I need a good book to start. I searched lots of books on the internet but I am not able to find a suitable one for me. I want to clear basics of ...
0
votes
0answers
82 views
iOS Storyboard Design and Cocos2d+Box2d Objects
In my iOS (iPad) app I want to design my view in Storyboard. This view will contain buttons, UIImageViews (with animatied images most of them with onTapGestureRecognizers), sounds, Text etc. I want ...
0
votes
1answer
143 views
box2d in cocos2d crashes with EXC_BAD_ACCESS. How to debug?
I create iOS app with Cocos2d v 1.0.1 and Box2d (cocos2d + box2d template).
On iPad my app works ok
On iPhone 4,4s ( ios versions 5.0.1 , 6.0 , not tested on other iPhones/firmwares) I got ...
1
vote
1answer
115 views
How to set revolution anchor when using b2RevoluteJointDef
First, I'd like to apologize the people who help to solute my issues before. Without your selfless help, I can't go smoothly so far in iOS development.
Now I have an issue again. The demo program is ...

