-1
votes
0answers
13 views

libandenginephysicsbox2dextension.so is getting crashed [closed]

in my game when i make body and after creating some number of bodies libandenginephysicsbox2dextension.so file close the game without any force close prompt and print a long logcat data like this ...
1
vote
1answer
183 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
2answers
29 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
27 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 ...
1
vote
1answer
36 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
32 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
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
41 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 ...
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
86 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
2answers
44 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

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
68 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
132 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
68 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
62 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 ...
1
vote
2answers
112 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
173 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
157 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
106 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
1answer
69 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
131 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
2answers
143 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
143 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
173 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. ...
1
vote
1answer
180 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
235 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
330 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
0answers
193 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
67 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 ...
1
vote
1answer
275 views

Android (andengine + box2d) beginner - drag an object (sprite/body)

I am currently following some tutorials to get introduced to andEngine and box2d and I would like to drag an object (sprite attached to body), whilst it is bouncing (it is registered to a physics ...
0
votes
1answer
113 views

Detect a Collision, not a Contact in Box2D

First, let me define how I perceive these two concepts: Collision happens when Object A collides/bumps/runs into Object B. As in they come into contact with each other, but with a high velocity. ...
1
vote
1answer
97 views

Box2D distanceJoint not maintaining shape in AndEngine

I am using Box2D distanceJoint with AndEngine to maintain a shape. But the shape is not maintained the pieces just fall to the floor. It is supposed to maintain a circular/elliptical shape. Can you ...
1
vote
1answer
54 views

How can I prevent a PrismaticJoint from resetting to it's initial Translation Limit?

I'm working on a game that has the player orbiting around planets. I'm using a PrismaticJoint to let the player move closer and further away from the planet, and I'm orbiting the Player by rotating ...
0
votes
0answers
194 views

Making body of Animated Sprite in Andengine Box2d

My problem is How can I use Animated sprite in Box2d as each frame of the Animated sprite has different texture and all the frames are packed in one Sheet / one Atlas.. And I have created multiple ...
1
vote
1answer
183 views

Box2D AndEngine: app hangs out when creating Joints during ContactListener?

I am using Box2D in AndEngine (for Android). My purpose is to create a Force joint whenever 2 objects collide with each other. When I try to create a Mouse Joint between 2 objects (bodies) during ...
0
votes
1answer
61 views

how to break/disect a sprite using anengine box2d?

I have a sprite that is a stick. My sprite is connected to physics Boxbody(box2d). I want if i click on the middle of the stick it should be broken from the middle and if i click in the start it ...
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 ...
1
vote
1answer
360 views

box2d (andengine gles2) PhysicsConnector syntax error

i have applied the gravity on my ball that is dynamic cirle body. when it reaches at the bottom of the screen it goes out of the screen. wo i want to make boundaries of my physics world. i created 4 ...
0
votes
2answers
329 views

Removing Box2D bodies crashes AndEngine

Thanks in advance for your help! I am building an Arkanoid/Breakout style game, and am running into some issues on account of body removal (at least that's where I suspect that the issue is). When I ...
1
vote
2answers
140 views

In AndEngine, manipulating a body always returns a NullPointerException

I'm starting out with AndEngine (GLES2) and I'm trying to make a simple paddle Sprite and it's connected body move when the TouchScreen is used. However, no matter how I tweak the code, it always ...
1
vote
1answer
2k views

Physics with Box2d and Andengine tutorial

Hello everyone I'm trying to develop a game like Jetpack so i want to set a gravity that normally push down and when the user tap the screen the gravity change it push up. I searched for a week a ...
1
vote
1answer
497 views

box2d angular velocity

I'm not understanding something about setting the magnitude of angular velocity in Box2d/AndEngine. I have this: final float omegaFactor = (float) 1.0; ballBody.setAngularVelocity((float) ( (Math.PI) ...
1
vote
1answer
148 views

Spring wall in AndEngine and Box2D

I use Box2D in my game, but I would like to have a nicely looking spring - wall to push the player when touched. It would look like this (in 3 frames): Question: how to implement it? Can I attach a ...
0
votes
1answer
138 views

AndEngine - Difference between onAccelerometerChanged and onAccelerationChanged

Please forgive me for my ignorance. I'm just starting out using the AndEngine and I've been trying to comprehend the difference between the 2 methods; onAccelerometerChanged(AccelerometerData ...
1
vote
0answers
178 views

AndEngine Box2d game

I'm developing a 2d survival shooter using Box2d extension and I've got some questions: I have two AnalogOnScreenControls. Their listeners modify both sprites and bodies. I receive TouchEventPool ...
0
votes
0answers
158 views

Turn based physics game using andengine

I have developed a turn based multiplayer game using andengine. It is similar to angree birds. I used asmack library to keep the communication going between two players. I used fixed step engine in ...
0
votes
1answer
634 views

AndEngine Physics Editor loading level

I have created a .pes file using PhysicsEditor and imported as xml and have added to my project. When I parsed it and created bodies, it is showing strange behavior. The mapping of bodies that I ...

1 2 3