How do I check if an object is within say 5 pixels of some specific location?
Develop games in your browser. Powerful, performant & highly capable.
I got it working, but I don't know if my way is good.
Basically I inverted an absolute value inequality into two inequalities (two for x, two for y).
As I type this I realize I could have just done distance(targetX, targetY, self.X, self.Y) < 5