mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-18 15:40:45 +00: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')
|