Esempio n. 1
0
        public void loadScript(string fileName)
        {
            //  Script theScript = new Script(fileName);

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

            //}

            status = DIRECTORSTATUS.READY;
        }
Esempio n. 2
0
        public void loadScript(TextAsset _asset)
        {
            //Script theScript = new Script(_asset);

            Script.Mount(_asset);

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

            //}

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