Pathfinding.Int2.ToInt3XZ C# (CSharp) Méthode

ToInt3XZ() public static méthode

public static ToInt3XZ ( Int2 o ) : Int3
o Int2
Résultat Int3
		public static Int3 ToInt3XZ (Int2 o) {
			return new Int3 (o.x,0,o.y);
		}