summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRedMser <redmser.jj2@gmail.com>2022-09-09 16:36:07 +0200
committerRedMser <redmser.jj2@gmail.com>2022-09-21 01:49:54 +0200
commita9b394d5bcd551d7ccb16cf19d6e40f675c9d07b (patch)
tree8a1403e9cc692864db93044a30c21af8f7036ca3 /doc/classes
parent0a5cbca803b58d0bdf2b8d0cc1f348ca5de214b4 (diff)
Show method override icon in script editor gutter
Combines with the connection slot icon when both apply. Can be clicked to jump to the method declaration (or documentation for built-in classes).
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/ScriptEditorBase.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/classes/ScriptEditorBase.xml b/doc/classes/ScriptEditorBase.xml
index 68834839f3..a3fcf53228 100644
--- a/doc/classes/ScriptEditorBase.xml
+++ b/doc/classes/ScriptEditorBase.xml
@@ -35,6 +35,13 @@
Emitted when the user requests a specific documentation page.
</description>
</signal>
+ <signal name="go_to_method">
+ <param index="0" name="script" type="Object" />
+ <param index="1" name="method" type="String" />
+ <description>
+ Emitted when the user requests to view a specific method of a script, similar to [signal request_open_script_at_line].
+ </description>
+ </signal>
<signal name="name_changed">
<description>
Emitted after script validation or when the edited resource has changed.
@@ -56,7 +63,7 @@
<param index="0" name="script" type="Object" />
<param index="1" name="line" type="int" />
<description>
- Emitted when the user requests a script.
+ Emitted when the user requests to view a specific line of a script, similar to [signal go_to_method].
</description>
</signal>
<signal name="request_save_history">