If I start a coroutine function within a heartbeat, will it finish within the heartbeat?

  1. What do you want to achieve?
    I want to know if my coroutines initiated within a stepped or heartbeat connection will finish within the stepped or heartbeat connection

  2. What is the issue?
    There’s no documentation regarding the topic.

  3. What solutions have you tried so far?
    I’ve googled it, looked at the api page, and asked Bing AI.

If anyone knows, thanks!

Code that does not yield will run in the frame and delay all other frames in the thread until the code is completed.

In other words, yes.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.