Tagged Questions
3
votes
4answers
1k views
How to move a sprite automatically using a physicsHandler in Andengine?
I use a DigitalOnScreenControl (knob with a four-directional arrow control) to move the entity and the entity which is bound to a physicsHandler.
physicsHandler.setEntity(sprite);
...
0
votes
2answers
505 views
Making body (box2d) a sprite (andengine) in Android
I can't make body (box2d) a sprite (andengine) and at the same time apply MoveModifier to sprite which is body. If i can make just body, it works namely the sprites can collide. If I apply just ...
0
votes
1answer
42 views
Version number not supported by gl2 in andengine
I am new to andengine. From various forums, i got to know that my system should support hardware virtulisation. I have installed "Intel X86" and my system didn't throw any problem regarding "HAX" now. ...
-1
votes
1answer
564 views
Create Box2D and engine polygon 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;
...
2
votes
0answers
886 views
AndEngine Making Chase Camera Follow Player
I am playing around with the AndEngine Race Game example. I am trying to make the camera follow the car as the player moves around. The Tile Map is larger than the player's screen but the camera ...
1
vote
0answers
209 views
Scene or Activity Animation
My game require an animation when one activity finishes and next started because I have develop game with multiple activity not as multiple scene per game. I have to show animation at the time of ...
0
votes
0answers
140 views
ANDEngine : 3d rotation in Particle System
Im using ANDEngine and wants to create confetti particle system.
But im unable to make flipping and rotation of confetti particle around z-axis
Since andengine is 2d engine, it doesnot support that. ...
0
votes
0answers
85 views
Design a path using Editor (AndEngine)
I want to develop a game which contain path like curve refer below image. Is it possible to design a path using Editor.. If yes then which editor i can use and how it is used for develop a game path. ...
-1
votes
0answers
35 views
Local game storage saving player stats
Is it a bad idea to store player stats (health, drop rate, luck, etc...) locally on the device with sqlite? Also is it a bad idea to store the NPC conversations in this manner, if it is, I am indeed ...