This version of Unity is unsupported.

WaitWhile Constructor

Declaration

public WaitWhile(Func<bool> predicate);

Parameters

predicate The supplied delegate will be evaluated each frame after MonoBehaviour.Update and before MonoBehaviour.LateUpdate until delegate returns false.

Description

Initializes a yield instruction with a given delegate to be evaluated.