예제 #1
0
    // Use this for initialization
    void Start()
    {
        ObjectLoader loader = new ObjectLoader();

        objList = loader.LoadXML(this.filepath);
        if (objList == null)
        {
            throw new Exception("FAILIED TO LOAD XML FILE");
        }

        foreach (GameObject t in Targets)
        {
            t.SetActive(false);
        }
    }