Answers for "js move objetc inside another object"

C#
3

how to move a gameobject to another object

//Attach this to the oject you want to move
public GameObject Bullet
public GameObject Cannon

void Start()
{
 (Bullet) = GameObject.Find("Bullet"); //These are to find the object to move to
 (Cannon) = GameObject.Find("Cannon"); 
 Bullet.transform.position = Cannon.transform.position; //this is to move the object
}
Posted by: Guest on February-22-2021

Code answers related to "js move objetc inside another object"

C# Answers by Framework

Browse Popular Code Answers by Language