how to make an object move towards another in unity c code example
Example 1: how to make an object move in unity
Vector3 input = new Vector3 (Input.GetAxis("Horizontal"), 0 , Input.GetAxis("Vertical");
Vector3 dir = input.normalized;
Vecotr3 vel = dir * speed * Time.deltaTime;
transform.Translate(vel);
Example 2: unity how to move an object to another object
transform.position = new Vector3(GameObject.Find("Object").transform.position.x, GameObject.Find("Object").transform.position.y, GameObject.Find("Object").transform.position.z);
transform.position = new Vector2(GameObject.Find("Object").transform.position.x, GameObject.Find("Object").transform.position.y);
Example 3: unity how to move a gameobject towards another gameobject
public float speed;
public GameObject object1;
public GameObject object2;
void FixedUpdate()
{
Vector3 dirction = object1.transform.position - object2.transform.position;
dirction = -dirction.normalized;
object1.transform.position += dirction * Time.deltaTime * speed;
}