diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2019-11-10 06:59:44 +0100 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-03-23 11:27:17 +0100 |
commit | 258d91f883eb3db0ebc709f4f7e43ccb6948a7fc (patch) | |
tree | e4cc6caad9a9078090db95ae0a72aa0a3eecd83b /doc/classes | |
parent | 63f77efdc6a1e178d356f33509cebb33b0e2c8e2 (diff) |
Added has_signal method for Object
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Object.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index a3faccae1a..33f5fc0f35 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -311,13 +311,22 @@ Returns [code]true[/code] if the object contains the given [code]method[/code]. </description> </method> + <method name="has_signal" qualifiers="const"> + <return type="bool"> + </return> + <argument index="0" name="signal" type="String"> + </argument> + <description> + Returns [code]true[/code] if the given [code]signal[/code] exists. + </description> + </method> <method name="has_user_signal" qualifiers="const"> <return type="bool"> </return> <argument index="0" name="signal" type="StringName"> </argument> <description> - Returns [code]true[/code] if the given user-defined [code]signal[/code] exists. + Returns [code]true[/code] if the given user-defined [code]signal[/code] exists. Only signals added using [method add_user_signal] are taken into account. </description> </method> <method name="is_blocking_signals" qualifiers="const"> |