Beispiel #1
0
 public static void Log(object msg)
 {
     if (API.DebugMode)
     {
         QGC_controller.Log("QGC:" + msg);
     }
 }
Beispiel #2
0
 public static void LogError(object msg)
 {
     if (API.DebugMode)
     {
         QGC_controller.LogWarning("QGC Error:" + msg);
     }
 }
Beispiel #3
0
 public static void RunCoroutine(IEnumerator routine, Func <bool> done)
 {
     QGC_controller.RunCoroutine(routine);
 }