Answers for "create new gameobject unity c#"

C#
4

gameobject in unity c#

//define "myObject"
//(asign in in inspector)
public GameObject myObject;
//runs when you hit the play button
void Start()
{
  //change the name to "myObjectsNewName"
  myObject.name = "myObjectsNewName";
}
//Note for Unity and C#
Posted by: Guest on September-01-2020
0

create new gameobject unity

// Create GameObject with the name "name".
GameObject newLocation = new GameObject("name");
Posted by: Guest on May-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language