This class cannot be directly instantiated and must be retrieved via a [EditorDebuggerPlugin].
You can add tabs to the session UI via [method add_session_tab], send messages via [method send_message], and toggle [EngineProfiler]s via [method toggle_profiler].
</description>
<tutorials>
</tutorials>
<methods>
<methodname="add_session_tab">
<returntype="void"/>
<paramindex="0"name="control"type="Control"/>
<description>
Adds the given [param control] to the debug session UI in the debugger bottom panel.
</description>
</method>
<methodname="is_active">
<returntype="bool"/>
<description>
Returns [code]true[/code] if the debug session is currently attached to a remote instance.
</description>
</method>
<methodname="is_breaked">
<returntype="bool"/>
<description>
Returns [code]true[/code] if the attached remote instance is currently in the debug loop.
</description>
</method>
<methodname="is_debuggable">
<returntype="bool"/>
<description>
Returns [code]true[/code] if the attached remote instance can be debugged.
</description>
</method>
<methodname="remove_session_tab">
<returntype="void"/>
<paramindex="0"name="control"type="Control"/>
<description>
Removes the given [param control] from the debug session UI in the debugger bottom panel.
Sends the given [param message] to the attached remote instance, optionally passing additionally [param data]. See [EngineDebugger] for how to retrieve those messages.
Toggle the given [param profiler] on the attached remote instance, optionally passing additionally [param data]. See [EngineProfiler] for more details.
</description>
</method>
</methods>
<signals>
<signalname="breaked">
<paramindex="0"name="can_debug"type="bool"/>
<description>
Emitted when the attached remote instance enters a break state. If [param can_debug] is [code]true[/code], the remote instance will enter the debug loop.
</description>
</signal>
<signalname="continued">
<description>
Emitted when the attached remote instance exits a break state.
</description>
</signal>
<signalname="started">
<description>
Emitted when a remote instance is attached to this session (i.e. the session becomes active).
</description>
</signal>
<signalname="stopped">
<description>
Emitted when a remote instance is detached from this session (i.e. the session becomes inactive).