diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-30 10:53:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 10:53:23 +0200 |
commit | 5313ce232dc81ed454d1ee7de6da84336e4ff30c (patch) | |
tree | c6f36bcb82e35646ba993e5d02a935da9ca8646d /editor/plugins/script_editor_plugin.cpp | |
parent | ceebd748b94a3ba5d294b24a863a9e9c70a1b721 (diff) | |
parent | d87021de93a2620de3a2a13815d37ebd484fc545 (diff) |
Merge pull request #27870 from mawenzy/pr_gotoline
Bind goto_line function for Script Editor
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index d84a5a1e48..0982da784f 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2950,6 +2950,7 @@ void ScriptEditor::_bind_methods() { ClassDB::bind_method(D_METHOD("can_drop_data_fw", "point", "data", "from"), &ScriptEditor::can_drop_data_fw); ClassDB::bind_method(D_METHOD("drop_data_fw", "point", "data", "from"), &ScriptEditor::drop_data_fw); + ClassDB::bind_method(D_METHOD("goto_line", "line_number"), &ScriptEditor::_goto_script_line2); ClassDB::bind_method(D_METHOD("get_current_script"), &ScriptEditor::_get_current_script); ClassDB::bind_method(D_METHOD("get_open_scripts"), &ScriptEditor::_get_open_scripts); ClassDB::bind_method(D_METHOD("open_script_create_dialog", "base_name", "base_path"), &ScriptEditor::open_script_create_dialog); |