From 96a6499da269d6f71ee976df26fc3806b2b04916 Mon Sep 17 00:00:00 2001 From: aaronp64 Date: Thu, 6 Mar 2025 13:01:27 -0500 Subject: [PATCH] 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. --- doc/classes/Script.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/classes/Script.xml b/doc/classes/Script.xml index 80aad9d30d..d8d6f4fd21 100644 --- a/doc/classes/Script.xml +++ b/doc/classes/Script.xml @@ -74,18 +74,21 @@ 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]. 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]. 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].