1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add get_base_editor to ScriptEditorBase

This commit is contained in:
sent44
2021-05-14 02:50:25 +07:00
parent a3dd18b12e
commit 2b30728ebf
9 changed files with 29 additions and 0 deletions

View File

@@ -171,6 +171,10 @@ void TextEditor::add_callback(const String &p_function, PackedStringArray p_args
void TextEditor::set_debugger_active(bool p_active) {
}
Control *TextEditor::get_base_editor() const {
return code_editor->get_text_editor();
}
Array TextEditor::get_breakpoints() {
return Array();
}