public void ChangeScript(EventScript script)
 {
     this.script = script;
     foreach (EventCommand esc in script.Commands)
     {
         esc.ResetOriginalOffset();
     }
     Populate();
 }
예제 #2
0
 //
 public ScriptIterator(EventScript script)
 {
     this.script = script;
 }
예제 #3
0
        public EventScript Copy()
        {
            EventScript copy = new EventScript(this.index);

            return(copy);
        }