2020-02-22 14:59:09 +01:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "Signal" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2020-02-22 14:59:09 +01:00
<brief_description >
2020-03-03 19:21:21 +01:00
Class representing a signal defined in an object.
2020-02-22 14:59:09 +01:00
</brief_description>
<description >
</description>
<tutorials >
</tutorials>
2021-09-21 04:49:02 +02:00
<constructors >
<constructor name= "Signal" >
2021-07-30 15:28:05 +02:00
<return type= "Signal" />
2020-11-09 17:46:03 +01:00
<description >
Constructs a null [Signal] with no object nor signal name bound.
</description>
2021-09-21 04:49:02 +02:00
</constructor>
<constructor name= "Signal" >
2021-07-30 15:28:05 +02:00
<return type= "Signal" />
<argument index= "0" name= "from" type= "Signal" />
2020-11-09 17:46:03 +01:00
<description >
Constructs a [Signal] as a copy of the given [Signal].
</description>
2021-09-21 04:49:02 +02:00
</constructor>
<constructor name= "Signal" >
2021-07-30 15:28:05 +02:00
<return type= "Signal" />
<argument index= "0" name= "object" type= "Object" />
<argument index= "1" name= "signal" type= "StringName" />
2020-02-22 14:59:09 +01:00
<description >
2020-11-09 17:46:03 +01:00
Creates a new [Signal] with the name [code]signal[/code] in the specified [code]object[/code].
2020-02-22 14:59:09 +01:00
</description>
2021-09-21 04:49:02 +02:00
</constructor>
</constructors>
<methods >
2020-02-22 14:59:09 +01:00
<method name= "connect" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "callable" type= "Callable" />
2021-09-19 18:55:23 +02:00
<argument index= "1" name= "flags" type= "int" default= "0" />
2020-02-22 14:59:09 +01:00
<description >
2021-09-19 18:55:23 +02:00
Connects this signal to the specified [Callable], optionally providing connection flags. You can provide additional arguments to the connected method call by using [method Callable.bind].
[codeblock]
for button in $Buttons.get_children():
button.pressed.connect(on_pressed.bind(button))
func on_pressed(button):
print(button.name, " was pressed")
[/codeblock]
2020-02-22 14:59:09 +01:00
</description>
</method>
<method name= "disconnect" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "callable" type= "Callable" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Disconnects this signal from the specified [Callable].
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "emit" qualifiers= "vararg const" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Emits this signal to all connected objects.
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "get_connections" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Returns the list of [Callable]s connected to this signal.
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "get_name" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Returns the name of this signal.
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "get_object" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Object" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Returns the object emitting this signal.
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "get_object_id" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Returns the ID of the object emitting this signal (see [method Object.get_instance_id]).
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "is_connected" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "callable" type= "Callable" />
2020-02-22 14:59:09 +01:00
<description >
2020-03-03 19:21:21 +01:00
Returns [code]true[/code] if the specified [Callable] is connected to this signal.
2020-02-22 14:59:09 +01:00
</description>
</method>
2021-03-18 14:44:42 +01:00
<method name= "is_null" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2020-02-22 14:59:09 +01:00
<description >
</description>
</method>
2021-09-21 04:49:02 +02:00
</methods>
<operators >
<operator name= "operator !=" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "Signal" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator ==" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "Signal" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
</operators>
2020-02-22 14:59:09 +01:00
</class>