You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pause() method is not really callable from outside an action, as it's used as an internal flag to indicate an asynchronous is currently busy and not finished. A user might think they could trigger Pause() from an input event, for example, but it would have no effect if, say, Delay() were currently running. Ideally Pause() will be available as an external method to freeze the action in place.
This could be supported by allowing actions to define their own custom OnPause function, and using a separate internal function for indicating the queue is still busy.
The text was updated successfully, but these errors were encountered:
The
Pause()
method is not really callable from outside an action, as it's used as an internal flag to indicate an asynchronous is currently busy and not finished. A user might think they could triggerPause()
from an input event, for example, but it would have no effect if, say,Delay()
were currently running. IdeallyPause()
will be available as an external method to freeze the action in place.This could be supported by allowing actions to define their own custom OnPause function, and using a separate internal function for indicating the queue is still busy.
The text was updated successfully, but these errors were encountered: