Tagged Questions
1
vote
0answers
45 views
Android Studio (Intellij) Compile Errors
I'm playing about with Android Studio using AndEngine and the Box2D plugin and I can't seem to get it to compile. I've attached a few photos of what I believe to be the relevant settings and messages.
...
1
vote
1answer
21 views
andengine setposition of animatedsprite
with andengine I'm trying to create a Footbal Game,
When the ball go in goal and dissapears from the screen, I would like to update score and reposition the ball at the center of the screen.
Update ...
-1
votes
0answers
24 views
Problems with SceneTouch Event on Android Game
I created my game using GLES2 and also lunched it in Google Play. But now I am facing too much problems. I am explaining all the bugs :
1st: Bugs in Scene Touch :
My aim is when someone ...
0
votes
0answers
32 views
Box2D debug draw for Android
Is there an implementation of Box2D's DebugDraw for Android? As far as I understand it needs to be written specifically for Android. Other implementations use classes from java.awt, and these won't ...
0
votes
0answers
26 views
Box2d for android beginner
I would like to get acquainted with the engine Box2D, write in java.
Do not tell installation manual for the engine, the simplest examples, etc. ?
I would be very grateful
Sorry for my english
1
vote
1answer
31 views
AndEngine Box2D Body GetContactList
Ive been trying to learn the Physics Box2D Extension for AndEngine and I have been reading http://www.box2d.org/manual.html#_Toc258082975
Under "9.3 Accessing Contacts" it says
You can also ...
0
votes
1answer
29 views
Box2d Collision Detection with Arrays
I'm developing in AndEngine I have nearly completed my game, but unfortunately, it suffers from a low fps occasionally due to the fact that I am checking .collideswith a lot in my update loop. I now ...
-1
votes
1answer
33 views
Make a body bounce inside the screen
I'm a full newbie with 2d and physics engines, I want to make a body bounce insice a screen (like the classic windows screensaver).
When the body reaches the left or right side of the screen reverse ...
0
votes
0answers
67 views
libgdx box2d interpolation doesn't work well
I am developing an Android game with libgdx and box2d.
My Problem is that the interpolation of the body in box2d doesn't work well... The body is laging a bit. The body is "less laging" without the ...
0
votes
2answers
35 views
Creating a PhysicsWorld gives me black screen
I have been started learning andegine and I have some problem with box2d extension.
I have this code and it gives me black screen. When I delete making PhysicsWorld it works.
package ...
0
votes
0answers
37 views
Box2d Cocos2d Android mouseJoint.testPoint not working
I have a simple box2d, cocos2d, Android application with one ball, and I need to control this ball with mouse (touch) events. Looking around I found several code snippets and I'm using what seems to ...
0
votes
1answer
59 views
Box2d Cocos2d Android gravity not working
I'm trying to create a simple test for Box2d, Cocos2d, and Android. All I need is to put one body on the screen, and have it respond to gravity. I looked everywhere and there are good tutorials for ...
0
votes
0answers
40 views
Setting up Box2D with Andengine. Errors in setting librabry reference
I am trying to setup Box2D to work with Andengine in Eclipse.
And i need to create library reference for Box2D to locate Andengine i set up previously.
But i get an error, the path is right and ...
0
votes
1answer
50 views
How to stop one body when collide with another body [Box2d]
I am developing a game using LibGDX platform and box2D in which I am moving one body(Dynamic) with the help of tocuhPad motion of LibGDX using
testBody1.setTransform(new Vector2(x,y), 0);
method ...
0
votes
2answers
55 views
Cocos2dx : Help needed for the moving platform game
I am trying to make a platform game in which, the platform moves from right side of the screen to the left side of the screen. And the hero is initialized in the middle of the screen.
The platform ...
1
vote
0answers
39 views
prismati joint movement by accelerometer change
I am developing a game where I have to move a basket shaped polygonal body in x axis on the bottom of the screen by accelerometer change.
horizontal prismatic joint is made connecting right wall body ...
0
votes
1answer
83 views
AndEngine - Destroy body from scene class?
I have a class that extends scene, which controls the game. In my ContactListener I have:
if (x1.getBody().getUserData().equals("wall")
&& ...
0
votes
1answer
133 views
LibGDX PhysicsBox2D, if i set linear velocity, physics does not work correctly
my world is world = new World(new Vector2(0, 0), true); //there is no gravity
and i have walls in the left, right, top bottom of the screen, so elements do not fly off the display.
I have the ...
0
votes
2answers
43 views
box2d body isn't moving
so, I've something like this:
physicsWorld=new PhysicsWorld(new Vector2(10, 10), false);
Rectangle test = new Rectangle(100, 100, 50, 50, vbom);
FixtureDef wallFixtureDef = ...
0
votes
2answers
66 views
Box2d - accelerating and limiting the speed of the wheel
I am making android game, using box2d for physics, I have vehicles, with wheels attached to the main vehicle body using WheelJoints. Now I am looking for a proper way to accelerate those vehicles, and ...
0
votes
0answers
51 views
How to set the position of Polygon filled with texture rendering
I created a Polygon filled with texture. The polygon is rendered properly and if set its position to ccp(winsize.width/2, winsize.height/2) then it also shows it properly. But the problem is I want to ...
0
votes
0answers
113 views
Turn tmx layer into collision object in libgdx
I have a tmx file with land and sky tile layer. I've a collision(object) layer around the land layer. In libgdx, how do I turn the entire land layer into collision objects for box2D dynamic objects to ...
0
votes
1answer
88 views
Prismatic Joints for Box2d As3 won't work?
im trying to create a moving platform in box2d using prismatic joints, all that is created is a box and no joints are apparent, what am I doing wrong? Here is my code
var ...
0
votes
2answers
64 views
How can I make a body not collide with other bodies sometimes?
How can I make a body not collide with other bodies sometimes? I have this body that I want it to collide with all bodies unless I specify then it should collide with no bodies. How can I achieve ...
0
votes
1answer
64 views
How can I change the size of a body in box2d?
How can I change the size of a body in box2d with andengine? There is no methods to do that in the body class. Is there another class that will do that?
0
votes
1answer
129 views
AndEngine Box2D. Crash game after remove Joint with collides
Please help! My game crash after remove Joint with collides.
The game is the body that is hanging on the rope. Finger cut the rope, and the game crashes!
My code:
@Override
protected Scene ...
0
votes
1answer
67 views
Where is the Game loop in andengine when you are using the box2D extention?
Where is the Game loop in andengine when you are using the box2D extention? Without the box2d Extension the game loop is found using this method but when you use the box2d extension that method doesnt ...
-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
0answers
69 views
(box2d) sprite not acting as a costume on my body
Hi I am using box2d and I have a circle shape, I am trying to get a sprite to act as a costume to mask the body, but the sprite doesn't move, only inserted in the world. I have an actor class and a ...
0
votes
0answers
85 views
(Box2D) How do I create a ball shape? What am I doing wrong?
I am continually getting this error:
1067: Implicit coercion of a value of type Number to an unrelated type Box2D.Collision.Shapes:b2ShapeDef.
when trying to create a circle shape, here is the ...
1
vote
2answers
111 views
How can I make a body move to the location of my touch?
Hi I am trying to make an air hockey type game but I am having trouble implementing the paddle movement component. How can I move a body(the paddle) to the location of my touch with the box2d ...
0
votes
1answer
170 views
Body Adjustable Velocity AndEngine/Box2D
I was trying to change the velocity of a Physics Body that is attached to a rectangle with the movement of the accelerometer. I cannot get the body to change velocity, is it a permanent property once ...
-2
votes
1answer
150 views
How to move a car with a constant speed. Code for moving any object with a constant speed [closed]
i just started learning on andEngine. i have taken this code from andEngine examples, i want a car to move itself in a linear direction. then i am planing to control it by sensores.but first i want a ...
1
vote
1answer
105 views
Unique Bodies In AndEngine Box2D
I want to create an unique physics body for use on a sprite. This sprite will need to have two portions where there is a colliding surface and an open space.
Example:
In the example provided ...
1
vote
0answers
117 views
Drag objects with Box2D, Cocos2D and Android
I need to create a simple game in which one object moves on the screen based on touch (mouse) events. In other words I want to be able to drag it on an Android machine's screen.
Looking everywhere ...
1
vote
1answer
68 views
AndEngine Library Can't Reference Physics
I just installed AndEngine on Eclipse and when I use the following code it won't reference some of the classes. I imported everything from andengine and it still will not find some of it. Body and ...
0
votes
0answers
122 views
Using PhysicsEditor to create unique bodies for collisions in box2d (AndEngine)
I've been developing a game recently and I would like to incorporate pixel perfect collisions (so it ignores the alpha part of the image)
After doing some research I was referred to using the ...
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 ...
1
vote
2answers
141 views
Rending of 1-pixel thin line with AndEngine and Box2D
I create a PhysicsWorld in the following manner:
this.mPhysicsWorld = new FixedStepPhysicsWorld(30, new Vector2(0, 0), false, 8, 1);
And I create a line in the following manner:
final Line line = ...
1
vote
0answers
140 views
How do I create a “jump” effect using AndEngine and Box2D
I am developing a game similar to the angry birds in AndEngine using the Box2D extension.
My goal is for the animated sprite to jump (like in angry birds) and have it bounce multiple times, depending ...
2
votes
1answer
163 views
How do I bounce, move, and jump a sprite simultaneously in AndEngine
I am looking to move a sprite in the same manner as in this video. I am using AndEngine. How do I move that ninja(sprite), complete with move and jump, using the AndEngine Box2D physics extension.
...
2
votes
1answer
391 views
When to use ShapeRenderer, Mesh + SpriteBatch, Box2D and Scene2D in Libgdx?
I'm new in Android Gaming and after I started with ShapeRenderer and did a little more search and I became confused if I started with the right foot.
So, what I really would like to know is when ...
1
vote
1answer
175 views
Physics Body pass through each
I am working on little project with Andengine+Box2D.I have a player character and a ground.Ground is a StaticBody and plyaer is DynamicBody. I want an effect that a person is walking on the ground.
...
0
votes
1answer
230 views
AndEngine Physics Box2D - the AnimatedSprite images moves even without any sensor change
I have an AnimatedSprite as a player, and I'm using IAccelerometerListener to move to the player to and fro.
Problem is that even when the device is rested on table without any movement, my player ...
1
vote
1answer
329 views
Android project crashes when I use Physics World
I am trying to develop a game with Andengine + Box2D. Everything is perfect but when I try to use Physics World , it crashes. If I don't use it,everything is perfect. The line I am talking about is: ...
0
votes
1answer
99 views
JBox2d: Negative gravity results in object going up?
I am a newbie learner to JBox2D. I was just trying JBox2D for the first time on Android(I know Android development and I'm good in it) because my project needed physics.
Now, the tutorials and ...
0
votes
1answer
229 views
Box2d Revolute Joint vehicle with arm
I am creating vehicle like this on the image:
As you can see, there is:
1) main vehicle body (Red rectangle)
2) wheels
3) vehicles arm (black rectangle)
Arm is connected with vehicles main body ...
0
votes
0answers
191 views
create box2d andengine box2d body without sprite
hey I have created my body using following code: (please read full description)
Body polyBody;
final BodyDef mBodyDef = new BodyDef();
mBodyDef.type = BodyDef.BodyType.DynamicBody;
...
1
vote
0answers
93 views
create distorted polygon box2d body from rectangular texture region
I have a rectangular sprite. I have created a polygon body. I cut it and I have obtained the coordinates of the polygons that needs to be created. challenge for me is to create that distorted ...
0
votes
0answers
66 views
Making a Body MultiResolution in AndEngine Box2d
I am using AndEngine 2 and I am trying to figure out who can I make bodies according to multiple resolutions.
Sprite can easily be scaled but How to scale the body?
I am creating body using ...


