unity gameobject position code example

Example 1: get position of any gameobject in unity

GameObject.Find("Your_Name_Here").transform.position;

Example 2: unity set position

// To set the position of a gameobject use the following
GameObject.transform.position = new Vector3(x, y, z);

Example 3: unity c# transform position

GameObject myObject;
// Change the position of myObject like this:
myObject.transform.position = new Vector3(x, y, z);
// Change position of GameObject that this script is attatched to:
transform.position = new Vector3(x, y, z);
// Read the x, y and z positions of myObject:
Debug.Log("x : " + myObject.transform.position.x);
Debug.Log("y : " + myObject.transform.position.y);
Debug.Log("z : " + myObject.transform.position.z);

Example 4: how to reference the position of a game object unity

private Transform player;
    
    private void Start()
    {
        player = GameObject.Find("Player").transform;
    }