diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-30 16:30:55 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-30 16:50:25 +0200 |
commit | 570cdc128f79e6acc4cfb37fa7d1606db9fac198 (patch) | |
tree | ff0dfeba52fbcd1c66135327e07bc32aa4a3188e /editor/debugger/script_editor_debugger.cpp | |
parent | bc0f5d3dde0f847dffdad927157a209271ced923 (diff) |
Rename Node's `filename` property to `scene_file_path` for clarity
Diffstat (limited to 'editor/debugger/script_editor_debugger.cpp')
-rw-r--r-- | editor/debugger/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp index d6650c3319..a312c161a8 100644 --- a/editor/debugger/script_editor_debugger.cpp +++ b/editor/debugger/script_editor_debugger.cpp @@ -1238,7 +1238,7 @@ void ScriptEditorDebugger::update_live_edit_root() { Array msg; msg.push_back(np); if (editor->get_edited_scene()) { - msg.push_back(editor->get_edited_scene()->get_filename()); + msg.push_back(editor->get_edited_scene()->get_scene_file_path()); } else { msg.push_back(""); } |