move gameobject with another unity code example
Example 1: 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 2: 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;
}