예제 #1
0
        static public EditorCoroutine StartCoroutine(EditorYieldInstruction pRoutine)
        {
            var tRoutine = new EditorCoroutine(pRoutine);

            tRoutine.Start();
            return(tRoutine);
        }
예제 #2
0
 public EditorCoroutine(EditorYieldInstruction pRoutine)
 {
     mRoutine = pRoutine;
 }