how to move a object in unity code example

Example 1: unity how to move an object to another object

// 3D
transform.position = new Vector3(GameObject.Find("Object").transform.position.x, GameObject.Find("Object").transform.position.y, GameObject.Find("Object").transform.position.z);

// 2D
transform.position = new Vector2(GameObject.Find("Object").transform.position.x, GameObject.Find("Object").transform.position.y);

Example 2: hot to move pobject unity

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    void Update()
    {
        // Move the object forward along its z axis 1 unit/second.
        transform.Translate(Vector3.forward * Time.deltaTime);

        // Move the object upward in world space 1 unit/second.
        transform.Translate(Vector3.up * Time.deltaTime, Space.World);
    }
}

Example 3: how to move an object in unity using c#

using UnityEngine; using System.Collections;  public class NewBehaviourScript: MonoBehaviour {               void Start (){          Transform.Position.X = 2;         Debug.Log("Test");      } }

Tags:

Go Example