Merge pull request #31870 from JFonS/add_network_profiler

Add network profiler
This commit is contained in:
Fabio Alessandrelli
2019-09-05 16:34:36 +02:00
committed by GitHub
10 changed files with 579 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ class TreeItem;
class HSplitContainer;
class ItemList;
class EditorProfiler;
class EditorNetworkProfiler;
class ScriptEditorDebuggerInspectedObject;
@@ -155,6 +156,7 @@ class ScriptEditorDebugger : public Control {
Map<String, int> res_path_cache;
EditorProfiler *profiler;
EditorNetworkProfiler *network_profiler;
EditorNode *editor;
@@ -199,6 +201,8 @@ class ScriptEditorDebugger : public Control {
void _profiler_activate(bool p_enable);
void _profiler_seeked();
void _network_profiler_activate(bool p_enable);
void _paused();
void _set_remote_object(ObjectID p_id, ScriptEditorDebuggerInspectedObject *p_obj);