unity how to add vector 3 variable to a list code example
Example: list of vectors c#
List<Vector2> vectors = new List<Vector2>();
vectors.Add(ground1p1);
vectors.Add(ground1p2);
vectors.Add(ground1p3);
vectors.Add(ground1p4);
List<Vector2> vectors = new List<Vector2>();
vectors.Add(ground1p1);
vectors.Add(ground1p2);
vectors.Add(ground1p3);
vectors.Add(ground1p4);