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