You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to work on a piece of code where there are multiple bodies in the scene and they all have raycasts that rotate when the body rotates, so this way i can attach a detection reaction to them
I already tried using sensors alongside the rays ad it didn't give me what i want
The text was updated successfully, but these errors were encountered:
Then i used the Query.ray to track the positions of the sensor and return details on the collisions
varcollisions=[]Events.on(engine,"afterUpdate",function(){//The sensor was attached to the bodies as a complex body/composite so i had to state the bodies i waned to track so i does not track the sensor object toovarbodies=[partA,partB,partI,partJ,partM,partN,partO,partP],startPoint=sensorA.vertices[0],endPoint=sensorA.vertices[3];collisions=Query.ray(bodies,startPoint,endPoint);console.log(collisions);});Events.on(render,"afterRender",function(){for(vari=0;i<collisions.length;i++){varcollision=collisions[i];context.rect(collision.bodyA.position.x-4.5,collision.bodyA.position.y-4.5,8,8);}
for some reason all it console logs on collision is still the raycastSensor1 as the bodyA and bodyB, is there any other way to go about it
This is my first week using matterJS so my approach might be wrong
Please help
I think in principle that seems like it might work, though as it stands I think Query.ray intentionally does not return individual parts (only the parent).
I'm trying to work on a piece of code where there are multiple bodies in the scene and they all have raycasts that rotate when the body rotates, so this way i can attach a detection reaction to them
I already tried using sensors alongside the rays ad it didn't give me what i want
The text was updated successfully, but these errors were encountered: