mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 12:14:44 +00:00
7 lines
121 B
GDScript3
7 lines
121 B
GDScript3
|
|
signal ok()
|
||
|
|
|
||
|
|
@warning_ignore("return_value_discarded")
|
||
|
|
func test():
|
||
|
|
ok.connect(func(): print('ok'))
|
||
|
|
emit_signal(&'ok')
|