Collision for mobile game
- by zemiguel12
I'm writing a little game in as3 using Starling, and I need to check collision between 2 boats that can rotate. I don't need the pixel perfect collision, but bounds collision is not enough too. The boat look more or less like this:
I was thinking about create one square on the back of the boat and a triangle on the front, than for each boat, check if the square collide with the other boat square or triangle, and the same for the triangle.
I just don't know how to do that, I don't know if it's possible with the Shape.hitTest, or if it's the best way to do that.
What can I do?