Hello.
How can I drag boxes like in this example http://www.jbox2d.org/v2demos/ but using Phys2D ???
Hello.
How can I drag boxes like in this example http://www.jbox2d.org/v2demos/ but using Phys2D ???
It is how I should do it (can’t test it right now) :
Thank you!! I tried that and it worked!!
I had to add this: Every time a drag event occurs I update the body A position to the current x,y mouse.
But I have a problem. body A is colliding with other objects.
I set the mask=0 as you said A.setBitmask(0); but it is still colliding :-\
Update the force or the position every frame. I use force because i was think that the object will warp if I use position.
Try to give a none-0 mask to all other bodies.
Basicly mask work like this :
if (bodyA.getMask()&bodyB.getMask() != 0) { doCollisionTest(bodyA,bodyB); }
But may be there is a special case when all mask are 0.