diff options
| author | Poommetee Ketson | 2017-12-25 21:19:56 +0700 |
|---|---|---|
| committer | Poommetee Ketson | 2017-12-25 21:19:56 +0700 |
| commit | 6c897707caa74e80671e847c46aef6a1e52d4d79 (patch) | |
| tree | eaf8712006d8906075b586fabeb0c75621332e8b /editor/plugins/script_editor_plugin.cpp | |
| parent | 2717b7f038fe96249c8dc70c8ece3077b37bb3e4 (diff) | |
| download | godot-6c897707caa74e80671e847c46aef6a1e52d4d79.tar.gz godot-6c897707caa74e80671e847c46aef6a1e52d4d79.tar.zst godot-6c897707caa74e80671e847c46aef6a1e52d4d79.zip | |
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index c1c75656c..2f0f21cc0 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2517,9 +2517,9 @@ void ScriptEditor::_bind_methods() { ClassDB::bind_method("_script_changed", &ScriptEditor::_script_changed); ClassDB::bind_method("_update_recent_scripts", &ScriptEditor::_update_recent_scripts); - ClassDB::bind_method(D_METHOD("get_drag_data_fw"), &ScriptEditor::get_drag_data_fw); - ClassDB::bind_method(D_METHOD("can_drop_data_fw"), &ScriptEditor::can_drop_data_fw); - ClassDB::bind_method(D_METHOD("drop_data_fw"), &ScriptEditor::drop_data_fw); + ClassDB::bind_method(D_METHOD("get_drag_data_fw", "point", "from"), &ScriptEditor::get_drag_data_fw); + 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("get_current_script"), &ScriptEditor::_get_current_script); ClassDB::bind_method(D_METHOD("get_open_scripts"), &ScriptEditor::_get_open_scripts); |
