コード例 #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));
 }