瀏覽代碼

Merge pull request #25306 from DualMatrix/no_showup

Fixed function names of built-in scripts not showing up in debugger
Rémi Verschelde 6 年之前
父節點
當前提交
c298b5267a
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      editor/script_editor_debugger.cpp

+ 4 - 0
editor/script_editor_debugger.cpp

@@ -898,6 +898,10 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
 					item.name = strings[2];
 					item.script = strings[0];
 					item.line = strings[1].to_int();
+				} else if (strings.size() == 4) { //Built-in scripts have an :: in their name
+					item.name = strings[3];
+					item.script = strings[0] + "::" + strings[1];
+					item.line = strings[2].to_int();
 				}
 
 			} else {