📅  最后修改于: 2022-03-11 14:48:42.228000             🧑  作者: Mango
///
/// Creates a new Gameobject prefab called Name_1 for example
/// Instantiates the prefab
///
public void AddGameObject()
{
//created for example only
GameObject testPrefab = new GameObject("Name_1");
Vector3 objectPOS = Vector3.zero;
GameObject newGameObject = Instantiate(testPrefab, objectPOS, Quaternion.identity);
}