Fix inconsistencies with the signals reference

This commit is contained in:
Ignacio Etcheverry 2016-03-15 12:14:31 +01:00
parent 5c763d0bb8
commit 11a6ae667e
1 changed files with 3 additions and 3 deletions

View File

@ -985,8 +985,8 @@ declared and connect it to the method of another instance:
print("Got callback with args! a: ",a," and b: ",b)
func _at_some_func():
instance.connect("your_signal_name",self,"callback_no_args")
instance.connect("your_signal_name_with_args",self,"callback_args")
instance.connect("your_signal_name",self,"_callback_no_args")
instance.connect("your_signal_name_with_args",self,"_callback_args")
It is also possible to bind arguments to a signal that lacks them with
your custom values:
@ -994,7 +994,7 @@ your custom values:
::
func _at_some_func():
instance.connect("your_signal_name_with_args",self,"callback_no_args",[22,"hello"])
instance.connect("your_signal_name",self,"_callback_args",[22,"hello"])
This is very useful when a signal from many objects is connected to a
single callback and the sender must be identified: