Quick question - is there a way to use the distance expression with ONLY x or y?
ie. If (distance(Sprite1.X, Sprite2.X) < 300 and If (distance(Sprite1.Y, Sprite2.Y < 900)
Thanks
Steve
Develop games in your browser. Powerful, performant & highly capable.
How about abs (sprite1.x-sprite2.x) is less than 300 , etc ?
Ah perfect - thank you :)