set gameobject position unity code example
Example 1: unity set position
GameObject.transform.position = new Vector3(x, y, z);
Example 2: how to change the position of a gameobject in c# unity
Vector3 pos = transform.position;
pos.x = 12;
transform.position = pos;
Example 3: unity c# transform position
GameObject myObject;
myObject.transform.position = new Vector3(x, y, z);
transform.position = new Vector3(x, y, z);
Debug.Log("x : " + myObject.transform.position.x);
Debug.Log("y : " + myObject.transform.position.y);
Debug.Log("z : " + myObject.transform.position.z);