Exemple #1
0
 void Update()
 {
     if (localExecution && interpreter != null)
     {
         interpreter.Tick();
         if (interpreter.SequenceFinished)
         {
             interpreter = null;
             if (loop && !abort)
             {
                 Launch();
             }
         }
     }
 }