8 lines
117 B
GDScript3
8 lines
117 B
GDScript3
|
|
func coroutine() -> void:
|
||
|
|
@warning_ignore("redundant_await")
|
||
|
|
await 0
|
||
|
|
|
||
|
|
func test():
|
||
|
|
await coroutine()
|
||
|
|
coroutine()
|