예제 #1
0
파일: QRoutines.cs 프로젝트: Hengle/QEngine
 public QRoutines WaitForQRoutine(QRoutines routine)
 {
     if (routine == this)
     {
         Debug.LogWarning("QRoutine added to its own queue: QRoutine will be waiting for itself and will never resolve.");
     }
     return(WaitForRoutine(routine));
 }
예제 #2
0
파일: QRoutines.cs 프로젝트: Hengle/QEngine
 public QRoutines WaitFor(QRoutines routine)
 {
     return(WaitForQRoutine(routine));
 }