I think this is what it is at least, basically, I have an For Loop that instantiate some objects at certain coordinates at random, to avoid the objects overlapping, I have the coordinates for each new one in an array, on which I check during the loop.
What I want to do is: If the coordinates of this iteration matches with one already in the array, it redo that iteration with a new coordinate.
I'm using > if array_name.has(object_name.position):
So, is there a good way to repeat this iteration only?