How can I push an object for example with {x, y, z} values into an array of another object with only {x, y} values?
Vector2 V2List = []
Vector3 V3 = new Vector3(1,2,3);
//.. code here
V2List = [{1, 2}]
This is just an example, on my real work, my object has more than 10 of props.