Tagged Questions
0
votes
0answers
16 views
360 degree gravity game mechanic like “They Need To Be Fed” game
I am a fan of "They Need To Be Fed" game and I want to understand the game mechanic at a deeper level. What are some good resources for the basic Box2d (or similar) physics behind the 360 degree ...
1
vote
0answers
45 views
Corona SDK physics with line, why does the line turn into rectangle in the physics engine?
The issue I am having is simple. I have an object in the center of the screen, and then a circle orbiting that object. what i want to do is have the object orbit around the object, when the use ...
0
votes
1answer
55 views
Box2d AS3 Flash simulating wind on top down view with friction
I am trying to make a top down game where you throw a disc using Box2d. The world has no gravity so the disc can be thrown and just bounces around the stage with the inertia and linear damping that I ...
1
vote
1answer
60 views
making a box2d body move in a spiral motion
How can one make a box2d body move in a spiral motion? I believe it will require applying some force but I am not sure how. I would appreciate any assistance.
1
vote
0answers
85 views
Strange behavior of Prismatic Joint of javascript port of Box2D engine
Lifting block on prismatic joint (b2PrismaticJointDef) on upper point gives impulse to the dynamic body that lays on lifting block surface even if lifting block doesn't move at all.
Maybe it's bug of ...
0
votes
1answer
85 views
How to change position of debug draw visualization of Box2D.js?
I'm creating game with the world bigger than screen. So i need to move Debug Draw according to visualization. In flash port to archive this issue we are usually move DisplayObject that uses as target ...
0
votes
1answer
66 views
realistic jumping box2d - configuration of variables
I'm still working on my Jump 'n' Run and have already solved the "can I jump" question.
My Question is now, how should I configure the Gravity, the Timesteps, the Fixturesize, the applied Impulse ...
1
vote
1answer
80 views
Disable collision on the fly in Box2D: does not work when entity is already colliding
I'm writing a game with impactjs and i'm using Box2D as physics-engine (Box2DFlash to be specific). So there is a move off the player where he should not collide with the enemys. To achieve this ...
0
votes
2answers
207 views
how to use the libgdx contactlistener
I've just began to work with the Libgdx's Box2d Engine but i simply do not understand when the methods of the Contactlistener should be called. There is on the one hand "begin contact" and on the ...
-1
votes
2answers
61 views
Making forces to work same on Different Resolutions
I am facing multi resolution issue in box 2d.
First I needed to make bodies multi resolution, I solved it by scaling the vertices by scale factor.
Now I need to make the forces to act same of all ...
0
votes
1answer
22 views
Make teeter in Box2d
Does anyone knows how can I make teeter with Box2d. I was looking joints, but no some real success how achieve this. The big problem is how to fix plank to some object (on half of plank)
0
votes
1answer
109 views
box2d gravity player fall down faster
I'm developing game with box2d for mobile.I created a world by these codes:
b2Vec2 gravity(0.0f, 9.8f);
bool doSleep = false;
b2World* g_World = new b2World(gravity, doSleep);
it's working so ...
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
1answer
51 views
When user hit ball make it like elipse
How cant i make with cocos2d and box2d, when I hit with eg. paddle a some ball, ball will change shape to look like elipse, if you know what i mean. If I hit ball with bigger force, ball will be more ...
1
vote
1answer
97 views
Is there an upper limit on velocity when using box2d?
I'm using box2d for physics simulation. I'm moving a circle using arrow keys by applying impulse on the body when ever a key is pressed. Unfortunately, the circle moves excruciatingly slow and doesn't ...
0
votes
1answer
65 views
Box2D - collect a coin
I'm fairly new to Box2D and I'm trying to make a simple game where a character jumps and picks a coin. I was able to create a contact listener and delete the coin when the contact was detected. The ...
-1
votes
1answer
42 views
Execute code at every step in box2d
What would it be the way to execute code in each step (solve) of box2d instead of once per frame.
0
votes
2answers
61 views
Forever moving ball
How do I create a body [A ball Body] that will bounce around the screen, never losing or gaining speed, regardless of what it hits in cocos2d-box2d?
0
votes
1answer
188 views
Prevent body from rotating in Box2D
I am currently using Box2d, more precisely the Java port jBox2d.
I have a circle that is colliding with other circles when falling (all those circles form a kind of a crank, see picture below).
...
0
votes
0answers
361 views
Generating Box2D body(collision map) from tilemap efficiently
I am working on a platformer game that will use tile maps, which I don't know if is a good idea!
I've made a neat tile map editor with tools for setting a spawn point etc. but now that I want to be ...
0
votes
1answer
155 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 ...
1
vote
1answer
211 views
Box2d - mouse joint set to a specific point on an object
I have a Box2d iphone app (using cocos2d) that has a mouse joint in it, and whenever you use the mouse joint, it applies the force to the object at whatever point you clicked. I was wondering if ...
0
votes
1answer
102 views
AndEngine with Box2D Extension
I am newbie to AndEngine. I have done some research and found two extensions for Box2D. One is developed by Nicholas Gramlich itself: https://github.com/nicolasgramlich/AndEnginePhysicsBox2DExtension
...
0
votes
1answer
117 views
Having problems understanding body positioning in Box2d. Any pointers on how things work?
I'm struggling to learn and understand box2d. Here is my problem:
I'm trying to make a simple car, the car body looks like this for now:
Now I'm trying to add a wheel, I create the wheel body and ...
0
votes
1answer
408 views
Level designing with Cocos2d and Box2d
I want to learn how to make levels using cocos2d and box2d (for iOS).
I am talking about a 2d platformer such as Limbo or Braid or something like that. How can I design and build levels like this?
I ...
1
vote
0answers
69 views
Studing physics [closed]
I'd like to know how to apply physics to objetcs like in Box2D engine: making cubes or spheres colliding each other and behaving like in real world.
But I have no guidance. Any help?
(I don't want ...
0
votes
1answer
99 views
How applyForce figures in with velocity in Corona/Box2d
Right now i am stuck trying to figure out the trajectory for a projectile. I'm thinking the issue is that i have the wrong velocity. Right now i am using what i pass into applyForce as my velocity, ...
-1
votes
1answer
297 views
Trajectory equation for object fired horizontally from a given height [closed]
Does anyone know the equation to get the current x position and the current y position of a projectile with gravity and mass figured in? The object is fired horizontally from a given height h, with ...
0
votes
1answer
274 views
Box2D, Lock body in a certain position (can't get SetPosition and SetTransform to work)
I am using Box2D to simulate a small world where the user can drag objects and 'stick' them in some predefined locations (basically 'locking' them in a certain position).
I have this code to lock an ...
2
votes
0answers
641 views
how to make a box2d body move along a Bezier curve/ arc path
I've searched extensively on how to make a Box2d body move along a Bezier curve or arc-like path with a start point, end point and possibly another control point. I know cocos2d objects can be moved ...
0
votes
1answer
336 views
GB2ShapeCache Shape Scale? (Physics Editor) [Box2D]
There is a class associated with the program Physics Editor called GB2ShapeCache that loads shapes that I make in the program. I noticed that it is not currently possible to change the scale of the ...
0
votes
1answer
92 views
determining when a body attached to a rope has moved a specific distance
Using Cocos2d and Box2d I have made a rope of revolute joint segments with a body attached to the lowest segment (weldJoint) which I move using a mouse joint. The rope is hanging downward. How can I ...
1
vote
0answers
181 views
making body swing from one rope to another
I am making a Tarzan-like game and have been brainstorming on making a body swing from one rope to another. Using Box2d and Cocos2d I have made a rope of revoulute joint segments with the body ...
0
votes
1answer
111 views
box2d boost velocity after collision
I'm creating a mobile game powered by andengine and the box2d physics extension
I wanted to know if there is a way to increase the velocity of a body
after collision.
thanks,
socksocket
1
vote
0answers
584 views
Box2d - b2EdgeShape & b2ChainShape Depreciated. Now What?
Googling all day could not give me this answer. I have to make an irregular terrain by using b2EdgeShape OR b2ChainShape as it is explained in the box2d manual which is not updated yet because these ...
0
votes
2answers
578 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
63 views
Box2D SPecial Collision Scenario
I have a very unique Box2D need:
I will have the world set up where polygons have specific colors. Whenever two polygons of the same color overlap, their intersection zone should no longer be solid ...
0
votes
2answers
246 views
Box2D Detecting when 2 specific edges touch
I am working on a Cocos2D project using Box2D and I am trying to detect when 2 specific edges on an object touch, for example for the red edges in the images below:
I am still learning collisions ...
2
votes
2answers
120 views
implement prismaticJoint physics
I'm trying to implement my own physics for an app I'm making in C++, OpenframeWorks. I'm currently using Box2D but I don't need collision detection so I want something much lighter.
I have a world ...
1
vote
0answers
175 views
In Andengine making physics body sporting multi-resolution
I am facing a strange kind of problem while making a physics body in andengineBox2d. I have made all the game using 800x480 resolution and scaling all the graphics using a function to support all ...
1
vote
1answer
798 views
Andengine Box2D Explosion [closed]
i want to make explosion effect after the player throws the handgernade, explosion means blast like the bodies near the thrown handgernade will randomly jump.......
here is the example
...
0
votes
1answer
1k views
Andengine Box2D physics body is not rotating when increase weight
Andengine Box2D physics body is not rotating when increase weight otherwise its perfectly rotating.I am making a game in which the player can throw the bomb, when the player throws the bomb with ...
0
votes
0answers
273 views
How do I prevent jitter between moving kinematic platform and a dynamic body in Box2D?
I've a moving platform (kinematic body), which goes up from it's initial position.
b2BodyDef platformDef;
platformDef.type = b2_kinematicBody;
platformDef.linearVelocity = b2Vec2(0.f, 0.5f);
Now ...
0
votes
1answer
392 views
Smoothly move between bodies
I'm not sure if the title is correct (please comment if it is not). I have a sprite (rectangle body), and I'm applying force on it to make it move from left to right and then go backward. The platform ...
7
votes
3answers
7k views
Android, libgdx and box2d basics [closed]
I wrote couple of simple board games since i started on android learning, Please let me know is there any tutorial or links, where i can start with physics library with libgdx, looking for something ...
2
votes
2answers
242 views
How to smoothly rotate a character according to the slope it is walking onto/standing on?
I need to rotate a character sprite according to the scope of the platform he (a rectangle) is standing or walking on. I have achieved the effect by rotating it according to the slope of the platform ...
1
vote
1answer
281 views
rotate/spin a body when collide with another
I'm implementing a physics game powered by AndEngine with box2d.
suppose there is an object falling from above vertically.
the ball collide with another object, and change its direction
now, after ...
0
votes
1answer
595 views
Creating circle in android andengine by box2d?
I can create rectangle for creating wall for example:
final Rectangle wall = new Rectangle(CAMERA_WIDTH-2, 0, 2, CAMERA_HEIGHT -2);
PhysicsFactory.createBoxBody(this.physicsWorld, wall, ...
0
votes
1answer
350 views
Reflecting a body with same speed in Box2d after collision AndEngine
Is there any way to reflect a physics body in Box2d in AndEngine with the same speed after collision.
Suppose if a ball hits the wall with speed X and reflects, then the speed after reflecting must be ...
2
votes
1answer
283 views
How to determine relative angle of collision in Box2d
I'm trying to determine the angle during the collision between two box2d bodies in my contact listener (and have failed).
I actually just want to establish whether a collision was simply a glancing ...


