summaryrefslogtreecommitdiffstats
path: root/doc/classes/Signal.xml
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2024-10-02 16:36:19 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2024-10-02 16:36:19 +0200
commit83dac9cdb88b7737fa72b44c84d684af55638e4b (patch)
treee7f28f7c5eb12348c167a95127f7469bab0ed3a7 /doc/classes/Signal.xml
parent1917bc3454e58fc56750b00e04aa25cb94d8d266 (diff)
downloadredot-engine-83dac9cdb88b7737fa72b44c84d684af55638e4b.tar.gz
Document `Object.has_signal()` in the Signal class reference
Diffstat (limited to 'doc/classes/Signal.xml')
-rw-r--r--doc/classes/Signal.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Signal.xml b/doc/classes/Signal.xml
index c970ccb094..b9ec34956f 100644
--- a/doc/classes/Signal.xml
+++ b/doc/classes/Signal.xml
@@ -4,7 +4,7 @@
A built-in type representing a signal of an [Object].
</brief_description>
<description>
- [Signal] is a built-in [Variant] type that represents a signal of an [Object] instance. Like all [Variant] types, it can be stored in variables and passed to functions. Signals allow all connected [Callable]s (and by extension their respective objects) to listen and react to events, without directly referencing one another. This keeps the code flexible and easier to manage.
+ [Signal] is a built-in [Variant] type that represents a signal of an [Object] instance. Like all [Variant] types, it can be stored in variables and passed to functions. Signals allow all connected [Callable]s (and by extension their respective objects) to listen and react to events, without directly referencing one another. This keeps the code flexible and easier to manage. You can check whether an [Object] has a given signal name using [method Object.has_signal].
In GDScript, signals can be declared with the [code]signal[/code] keyword. In C#, you may use the [code][Signal][/code] attribute on a delegate.
[codeblocks]
[gdscript]