I am really sorry if anyone already have asked this question, but I have tried to search a lot regarding this. Is there any method that can be use to detect if one Box in Threejs is colliding with one or many other objects in the scene?
let allObjects = getAllObjectsArray(); //returns all Boxes of the scene
let newBox = getNewBox(); //Adding new box;
let collidingObjs = allCollidingObjects(newBox);//I want a logic that will return array of all objects collide with "newBox"
console.log(collidingObjs)
Very simple, working 100% fine. I don't know why no one is recommending this method. By the way, thanks