Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Flow order of execution #14

@brettmjohnson

Description

@brettmjohnson

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions