Hello I’ve got a simple function checking the collision between one object to four others. I’m pretty sure I made it work earlier today but it doesn’t anymore, I’m utterly perplexed by this.
if(square, edge1, edge2, edge3, edge4.hitTestObject(Circle)){
gotoAndStop(46);
removeChild(Circle);
removeEventListener(MouseEvent.MOUSE_DOWN,mousePress);
removeEventListener(Event.ENTER_FRAME,doAll);
}
It only collides with the square, which is the first object stated.
I’ve tried using one of these “checks” for each object but that doesn’t work either.
Is the code faulty in any way, or is there another solution to this?
Thanks in advance