Call

Calls another flow and returns afterward.

Example:

Call("ShowIntro")     # same effect
Log("@IntroFinished") # same effect

Explanation:

  • Executes the target flow and then resumes the current flow.

  • Great for reusable sub-flows.

Last updated