I have a List<GameObject>
and I need to remove doubles that have the same position.y
and position.x
(position.z
is irrelevant).
I'm thinking that I need to compare all elements in a list and go through the previous elements of the same list and compare if they have the same positions and then, if not, populate the new List<GameObject>()
.
I don't really know how to do this as I'm not an experienced programmer.