-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Description
In debugging, I found the order of execution when using Flow was a little unexpected. It might be worth documenting.
For example, in an Update function (not real code):
- print("testA")
- flow( print("testB") ) -- no delay before calling print
- print("testC")
I was expecting it to print testA, testB, testC. Instead it's testA, testC, testB. They're all executed on the same frame, but Flow executes later.
This is totally fine but might be worth noting somewhere.
Also, thanks for the great toolset, and all your assets really.
Metadata
Metadata
Assignees
Labels
No labels