Bullet example request

Hello vvvvorld!

I need to take and hold a box in the Bullet world with a Leap motion device:
BulletRequest

I understand the Bullet’s world theory, and already made the preview above,but right now I have no time to learn deeper.

I’m sure someone already done this before and could share or sell a quick example. vvvv beta36x64, Leap SDK 2.3.1

Please contact our office: office [at] ivanraster.com or me in telegram @andreybo27
Or just share here ;))

afair you can create/destroy anchors when fingers and the object intersects. you can test that with raycasting. to make it natural you have to take grabbing, velocity of contact and opening fingers into account.

1 Like

simple way is taking the object out (destroying) of the simulation right when you grab it and display an imposter while holding it. you can inputmorph the last known simulated position to the imposter position to make it look convincing.

and when you release the object, just create a new bullet object at the position of the imposter. its just a matter of good timing to make this convincing.

@u7angel indeed seems the fastest solution. thank you!