Tagged Questions
1
vote
2answers
177 views
Confusing box2d forces
Hello Friends.
This is my demo game screen-shoot. Here i am using three buttons. Right-bottom button is used for jump and left-bottom buttons used for move left and right.
I have some questions
1) ...
0
votes
1answer
252 views
moving box2d bodies in an arc or curved path
How can I make a b2Body move in a arc-like or curved path? I have heard about cocos2d Bezier curve function (ccBezier) but this is for moving cocos2d sprites. Or can it be modified to move box2d ...
0
votes
0answers
55 views
limiting a sprites movement after a mouseJoint is released
I have created a weldJoint between two sprites and I also created a method (spritePositionRelease) that returns the exact position of a sprite when a mouseJoint is released. I want to track the ...
1
vote
1answer
101 views
Why is the MaskBit maxed out
Hi there for some reason the maskbit of my b2FixtureDef is being maxxed out and im not sure why
Here is the declaration of the items that are used in the game
enum PhysicBits {
PB_NONE = 0x0000,
...
0
votes
0answers
61 views
Creating a contact listener with sprites from different classes
I've been trying to set a contact listener that creates a joint on contact between two sprites which have their own classes. Both sprites are inheriting from NSObject and they are initialized in their ...
2
votes
2answers
537 views
Simple 2D Flight Physics with Box2D
I'm trying to build a simple side scroller with an airplane being the player. As such, I want to build simple flight controls with simple but realistic-feeling physics. I'm making use of cocos2D and ...
0
votes
1answer
358 views
what is the difference between CCSprite and a PhysicsSprite?
I am new to Cocos2D and I've realized that most of the codes written before the Cocos2d update used CCSprites. Recently I realized a lot of more recent codes after the update are using PhysicsSprite. ...
0
votes
0answers
143 views
Schedule update problem
This might sound pretty straightforward. I've created a method and I've called it as below in the init method.
[self createNewSpr:ccp(s.width * 0.25,s.height-200)];
[self createNewSpr:ccp(s.width * ...
2
votes
2answers
437 views
Physics in carrom like game using cocos2d + Box2D
I am working on carrom like game using cocos2d + Box2D. I set world gravity(0,0), want gravity in z-axis. I set following values for coin and striker body:
Coin body (circle with radius - ...
5
votes
2answers
2k views
How to make bird to fly using box2d
I am new to Box2D, I have set gravity to 10. How to make an object fly in space even though the gravity is 10. What are the properties I need to set to make object fly? Is there any different ...