mirror of
https://github.com/godotengine/godot.git
synced 2025-10-23 09:53:25 +00:00
6 lines
121 B
GDScript
6 lines
121 B
GDScript
signal ok()
|
|
|
|
@warning_ignore("return_value_discarded")
|
|
func test():
|
|
ok.connect(func(): print('ok'))
|
|
emit_signal(&'ok')
|