How do i use the Pick Nearest/farthest but only by Y and not by X and Y?
Develop games in your browser. Powerful, performant & highly capable.
Create a variable: yDifference
Loop through each of the sprite you want to check.
Compare(abs(sprite1.y-sprite2.y) < yDifference)
current loop sprite is closer.
set yDifference to abs(sprite1.y-sprite2.y)
Something like that.