mirror of
https://github.com/godotengine/godot.git
synced 2024-12-21 10:25:24 +08:00
7 lines
121 B
GDScript
7 lines
121 B
GDScript
signal ok()
|
|
|
|
@warning_ignore("return_value_discarded")
|
|
func test():
|
|
ok.connect(func(): print('ok'))
|
|
emit_signal(&'ok')
|