Godot Version
4.3
Question
Hi. Is it possible to run a coroutine in a thread?
For example, if I have a coroutine example
, I would normally do:
await example()
However, using
var thread := Thread.new()
thread.start(example)
gives me an error. Thanks in advance.