diff options
Diffstat (limited to 'doc/classes/EditorDebuggerPlugin.xml')
-rw-r--r-- | doc/classes/EditorDebuggerPlugin.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/classes/EditorDebuggerPlugin.xml b/doc/classes/EditorDebuggerPlugin.xml index 4c602b8359..a519e43bc6 100644 --- a/doc/classes/EditorDebuggerPlugin.xml +++ b/doc/classes/EditorDebuggerPlugin.xml @@ -47,6 +47,21 @@ <tutorials> </tutorials> <methods> + <method name="_breakpoint_set_in_tree" qualifiers="virtual"> + <return type="void" /> + <param index="0" name="script" type="Script" /> + <param index="1" name="line" type="int" /> + <param index="2" name="enabled" type="bool" /> + <description> + Override this method to be notified when a breakpoint is set in the editor. + </description> + </method> + <method name="_breakpoints_cleared_in_tree" qualifiers="virtual"> + <return type="void" /> + <description> + Override this method to be notified when all breakpoints are cleared in the editor. + </description> + </method> <method name="_capture" qualifiers="virtual"> <return type="bool" /> <param index="0" name="message" type="String" /> @@ -56,6 +71,14 @@ Override this method to process incoming messages. The [param session_id] is the ID of the [EditorDebuggerSession] that received the message (which you can retrieve via [method get_session]). </description> </method> + <method name="_goto_script_line" qualifiers="virtual"> + <return type="void" /> + <param index="0" name="script" type="Script" /> + <param index="1" name="line" type="int" /> + <description> + Override this method to be notified when a breakpoint line has been clicked in the debugger breakpoint panel. + </description> + </method> <method name="_has_capture" qualifiers="virtual const"> <return type="bool" /> <param index="0" name="capture" type="String" /> |