2020-05-18 14:55:49 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 13:18:53 +00:00
<class name= "EngineDebugger" inherits= "Object" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2020-05-18 14:55:49 +00:00
<brief_description >
Exposes the internal debugger.
</brief_description>
<description >
[EngineDebugger] handles the communication between the editor and the running game. It is active in the running game. Messages can be sent/received through it. It also manages the profilers.
</description>
<tutorials >
</tutorials>
<methods >
<method name= "has_capture" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
2020-05-18 14:55:49 +00:00
<description >
Returns [code]true[/code] if a capture with the given name is present otherwise [code]false[/code].
</description>
</method>
<method name= "has_profiler" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
2020-05-18 14:55:49 +00:00
<description >
Returns [code]true[/code] if a profiler with the given name is present otherwise [code]false[/code].
</description>
</method>
<method name= "is_active" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2020-05-18 14:55:49 +00:00
<description >
Returns [code]true[/code] if the debugger is active otherwise [code]false[/code].
</description>
</method>
<method name= "is_profiling" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
2020-05-18 14:55:49 +00:00
<description >
Returns [code]true[/code] if a profiler with the given name is present and active otherwise [code]false[/code].
</description>
</method>
<method name= "profiler_add_frame_data" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "data" type= "Array" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Calls the [code]add[/code] callable of the profiler with given [param name] and [param data].
2020-05-18 14:55:49 +00:00
</description>
</method>
<method name= "profiler_enable" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "enable" type= "bool" />
<param index= "2" name= "arguments" type= "Array" default= "[]" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Calls the [code]toggle[/code] callable of the profiler with given [param name] and [param arguments]. Enables/Disables the same profiler depending on [code]enable[/code] argument.
2020-05-18 14:55:49 +00:00
</description>
</method>
<method name= "register_message_capture" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "callable" type= "Callable" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Registers a message capture with given [param name]. If [param name] is "my_message" then messages starting with "my_message:" will be called with the given callable.
2020-05-18 14:55:49 +00:00
Callable must accept a message string and a data array as argument. If the message and data are valid then callable must return [code]true[/code] otherwise [code]false[/code].
</description>
</method>
<method name= "register_profiler" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "profiler" type= "EngineProfiler" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Registers a profiler with the given [param name]. See [EngineProfiler] for more information.
2020-05-18 14:55:49 +00:00
</description>
</method>
<method name= "send_message" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "message" type= "String" />
<param index= "1" name= "data" type= "Array" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Sends a message with given [param message] and [param data] array.
2020-05-18 14:55:49 +00:00
</description>
</method>
<method name= "unregister_message_capture" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Unregisters the message capture with given [param name].
2020-05-18 14:55:49 +00:00
</description>
</method>
<method name= "unregister_profiler" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "name" type= "StringName" />
2020-05-18 14:55:49 +00:00
<description >
2022-08-12 16:07:53 +00:00
Unregisters a profiler with given [param name].
2020-05-18 14:55:49 +00:00
</description>
</method>
</methods>
</class>