diff options
| author | geequlim | 2017-10-17 22:37:25 +0800 |
|---|---|---|
| committer | Geequlim | 2017-11-17 09:20:32 +0800 |
| commit | ccf76798d54c7ed70813346493b7f64264181f7c (patch) | |
| tree | a7ead8b82ae57af5f47e959d40c49b5144d227f4 /editor/script_editor_debugger.h | |
| parent | 475cee9c0fc7b1975de1c5380178763dc2c2df38 (diff) | |
| download | godot-ccf76798d54c7ed70813346493b7f64264181f7c.tar.gz godot-ccf76798d54c7ed70813346493b7f64264181f7c.tar.zst godot-ccf76798d54c7ed70813346493b7f64264181f7c.zip | |
Diffstat (limited to 'editor/script_editor_debugger.h')
| -rw-r--r-- | editor/script_editor_debugger.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/editor/script_editor_debugger.h b/editor/script_editor_debugger.h index d18a625ee..d13048ce2 100644 --- a/editor/script_editor_debugger.h +++ b/editor/script_editor_debugger.h @@ -74,12 +74,13 @@ class ScriptEditorDebugger : public Control { Tree *inspect_scene_tree; HSplitContainer *inspect_info; - PropertyEditor *inspect_properties; + + bool updating_scene_tree; float inspect_scene_tree_timeout; float inspect_edited_object_timeout; ObjectID inspected_object_id; - ScriptEditorDebuggerInspectedObject *inspected_object; - bool updating_scene_tree; + ScriptEditorDebuggerVariables *variables; + Map<ObjectID, ScriptEditorDebuggerInspectedObject *> remote_objects; Set<ObjectID> unfold_cache; HSplitContainer *error_split; @@ -96,7 +97,6 @@ class ScriptEditorDebugger : public Control { TabContainer *tabs; Label *reason; - ScriptEditorDebuggerVariables *variables; Button *step; Button *next; @@ -174,6 +174,9 @@ class ScriptEditorDebugger : public Control { void _paused(); + void _set_remote_object(ObjectID p_id, ScriptEditorDebuggerInspectedObject *p_obj); + void _clear_remote_objects(); + protected: void _notification(int p_what); static void _bind_methods(); |
