Does anyone know of an example of collision avoidance in using THREE.js and Physi.js? I can't seem to make it work ...
Here is the code i've made so far:
// Throwing the object from the top of the room
zmesh.position.set(
Math.random() * 5.5 - 3,
5,
Math.random() * 5.5 - 3
);
zmesh.useEuler = true;
zmesh.overdraw = true;
zmesh.rotation.y = -360;
var direction = new THREE.Vector3;
direction.set(0,-1,0);
var intersect_ray = new THREE.Ray(zmesh.position,direction);
var intersection = intersect_ray.intersectObjects(objects);
// Checking if the current object is intersected with any other objects on the floor
while (intersection.length > 0)
{
// We found other objects on the floor, so we generate a new position to be set
zmesh.position.set(
Math.random() * 5.5 - 3,
5,
Math.random() * 5.5 - 3
);
intersection = intersect_ray.intersectObjects(objetcs);
alert(intersection[0].point);
}
scene.add(zmesh);
objects.push(zmesh);
}
I'm using Physi.js lib in order to "throw" objects from the top of the screen, just like this example:
chandlerprall.github.com/Physijs/examples/collisions.html
The thing I want to do different - is to avoid the object collision after they are being thrown. I tried to cast a ray and check if any objects are on the floor, but it doesn't seem to be working