コード例 #1
0
    private void Awake()
    {
        if (sceneGraph == null)
        {
            sceneGraph = new SceneGraph();
            sceneGraph.variableDelegate = this;
        }

        sceneGameObjects = new Dictionary <string, SceneGameObject>();

        sceneObjects.LoadPrefabs();

        var sceneRoot = new GameObject("SceneRoot");
    }