From 04fbe18c0649fdc403bebec7c3dbe479bf8e5a40 Mon Sep 17 00:00:00 2001 From: Lightning_A Date: Tue, 20 Jul 2021 12:22:47 -0600 Subject: [PATCH] Fix array reorder methods not being bound --- editor/editor_properties_array_dict.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp index 6e6e5c45a24..1038a823c35 100644 --- a/editor/editor_properties_array_dict.cpp +++ b/editor/editor_properties_array_dict.cpp @@ -573,6 +573,9 @@ void EditorPropertyArray::_bind_methods() { ClassDB::bind_method("_change_type_menu", &EditorPropertyArray::_change_type_menu); ClassDB::bind_method("_object_id_selected", &EditorPropertyArray::_object_id_selected); ClassDB::bind_method("_remove_pressed", &EditorPropertyArray::_remove_pressed); + ClassDB::bind_method("_reorder_button_gui_input", &EditorPropertyArray::_reorder_button_gui_input); + ClassDB::bind_method("_reorder_button_down", &EditorPropertyArray::_reorder_button_down); + ClassDB::bind_method("_reorder_button_up", &EditorPropertyArray::_reorder_button_up); } EditorPropertyArray::EditorPropertyArray() {