コード例 #1
0
        public void loadScript(string fileName)
        {
            //  Script theScript = new Script(fileName);

            Script.Mount(fileName);
            //while (!theScript.isReady)
            //{

            //}

            status = DIRECTORSTATUS.READY;
        }
コード例 #2
0
        public void loadScript(TextAsset _asset)
        {
            //Script theScript = new Script(_asset);

            Script.Mount(_asset);

            //while (!theScript.isReady)
            //{

            //}

            status = DIRECTORSTATUS.READY;
        }
コード例 #3
0
 public Director()
 {
     Instance            = this;
     GENERAL.ALLPOINTERS = new List <StoryPointer>();
     status = DIRECTORSTATUS.NOTREADY;
 }
コード例 #4
0
 public void loadScriptText(string script)
 {
     Script.MountScript(script);
     status = DIRECTORSTATUS.READY;
 }
コード例 #5
0
 public void loadScriptResource(string fileName)
 {
     Script.MountResource(fileName);
     status = DIRECTORSTATUS.READY;
 }
コード例 #6
0
 public void loadScriptAsset(TextAsset _asset)
 {
     Script.MountAsset(_asset);
     status = DIRECTORSTATUS.READY;
 }