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
Will poll until the condition is met instead of a timer or a nested while. pollRate runs off a global loop; possible delay till first check is 0..pollRate. Evaluates to setting a temp score to the global until score (for the pollRate), adding to the global until score, adding to the local until score, & if the temp score is 0 will run the global loop. When a local until terminates it will subtract from the global & local until scores. If a local until score reaches 0 the condition will not be tested (add visitor for command conditions). If the global until score (for the pollRate) reaches 0, do not continue the loop.
The text was updated successfully, but these errors were encountered:
await until(condition: ConditionNode, pollRate: TimeArgument)
Will poll until the condition is met instead of a timer or a nested
while
.pollRate
runs off a global loop; possible delay till first check is 0..pollRate. Evaluates to setting a temp score to the global until score (for thepollRate
), adding to the global until score, adding to the local until score, & if the temp score is 0 will run the global loop. When a local until terminates it will subtract from the global & local until scores. If a local until score reaches 0 the condition will not be tested (add visitor for command conditions). If the global until score (for thepollRate
) reaches 0, do not continue the loop.The text was updated successfully, but these errors were encountered: