Tagged Questions
-1
votes
1answer
315 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;
...
1
vote
1answer
373 views
How can we match polygon data structure with a background image
I am referring to this fireball game.
The ball will collide with background, which is in polygon form.
I was wondering, how I can match my polygon data structure with the background image. Say, I ...