Link Script method documentation to details about returned dictionaries

Added links for get_script_method_list(), get_script_property_list(), and get_script_signal_list() to corresponding Object method documentation that includes details about the entries in the returned dictionaries.
This commit is contained in:
aaronp64 2025-03-06 13:01:27 -05:00
parent 1753893c60
commit 96a6499da2

View File

@ -74,18 +74,21 @@
<return type="Dictionary[]" />
<description>
Returns the list of methods in this [Script].
[b]Note:[/b] The dictionaries returned by this method are formatted identically to those returned by [method Object.get_method_list].
</description>
</method>
<method name="get_script_property_list">
<return type="Dictionary[]" />
<description>
Returns the list of properties in this [Script].
[b]Note:[/b] The dictionaries returned by this method are formatted identically to those returned by [method Object.get_property_list].
</description>
</method>
<method name="get_script_signal_list">
<return type="Dictionary[]" />
<description>
Returns the list of user signals defined in this [Script].
[b]Note:[/b] The dictionaries returned by this method are formatted identically to those returned by [method Object.get_signal_list].
</description>
</method>
<method name="has_script_signal" qualifiers="const">