create gameobject at runtime unity code example
Example 1: unity create gameobject
// Use 'new GameObject' to create a new GameObject in the current scene
SpawnedObject = new GameObject("Created GameObject");
Example 2: how to add a gameobject
/// <summary>
/// Creates a new Gameobject called Name_1
/// </summary>
public void AddGameObject()
{
GameObject testObject = new GameObject("Name_1");
}