We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b3b10 commit cd6449dCopy full SHA for cd6449d
1 file changed
Assets/UnityScreenNavigator/Runtime/Foundation/CoroutineSystem/CoroutineHandle.cs
@@ -21,6 +21,9 @@ public CoroutineHandle(IEnumerator routine)
21
/// </summary>
22
public CoroutineStepResult Step()
23
{
24
+ if (Status.IsFaulted)
25
+ return CoroutineStepResult.Faulted;
26
+
27
if (Status.IsCompleted)
28
return CoroutineStepResult.Completed;
29
0 commit comments