![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | bob333 |
Hi,
If foo1 and foo2 are called in series using call_deferred is it guaranteed to be executed in series one after the other.
Example: Does executing the following function makes sure that foo1 execution is completed before calling foo2 ?
func some_func():
call_deferred("foo1")
call_deferred("foo2")