AsyncCallWaitForPhysics Method |
Namespace: KSPDev.ProcessingUtils
public static Coroutine WaitForPhysics( MonoBehaviour mono, int maxFrames, Func<bool> waitUntilFn, Action success = null, Action failure = null, Action<int> update = null )
class AsyncCall_WaitForPhysics1 : MonoBehaviour { void Awake() { var count = 5; Debug.Log("Before start waiting"); AsyncCall.WaitForPhysics( this, 10, () => --count == 0, success: () => Debug.Log("Success!"), failure: () => Debug.Log("Failure!"), update: x => Debug.LogFormat("...waiting: {0}", x)); Debug.Log("After start waiting"); // The output in the logs will be: // Before start waiting // ...waiting: 0 // After start waiting // ...waiting: 1 // ...waiting: 2 // ...waiting: 3 // ...waiting: 4 // Success! } }
class AsyncCall_WaitForPhysics2 : MonoBehaviour { void Awake() { var count = 10; Debug.Log("Before start waiting"); AsyncCall.WaitForPhysics( this, 5, () => --count == 0, success: () => Debug.Log("Success!"), failure: () => Debug.Log("Failure!"), update: x => Debug.LogFormat("...waiting: {0}", x)); Debug.Log("After start waiting"); // The output in the logs will be: // Before start waiting // ...waiting: 0 // After start waiting // ...waiting: 1 // ...waiting: 2 // ...waiting: 3 // ...waiting: 4 // Failure! } }