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

Implements "Batch Rename" editor tool.

This commit is contained in:
Blazej Floch
2018-01-21 01:12:25 -05:00
parent c58891ff4c
commit e58b10c883
7 changed files with 831 additions and 5 deletions

View File

@@ -867,7 +867,7 @@ Array EditorSelection::_get_transformable_selected_nodes() {
return ret;
}
Array EditorSelection::_get_selected_nodes() {
Array EditorSelection::get_selected_nodes() {
Array ret;
@@ -885,7 +885,7 @@ void EditorSelection::_bind_methods() {
ClassDB::bind_method(D_METHOD("clear"), &EditorSelection::clear);
ClassDB::bind_method(D_METHOD("add_node", "node"), &EditorSelection::add_node);
ClassDB::bind_method(D_METHOD("remove_node", "node"), &EditorSelection::remove_node);
ClassDB::bind_method(D_METHOD("get_selected_nodes"), &EditorSelection::_get_selected_nodes);
ClassDB::bind_method(D_METHOD("get_selected_nodes"), &EditorSelection::get_selected_nodes);
ClassDB::bind_method(D_METHOD("get_transformable_selected_nodes"), &EditorSelection::_get_transformable_selected_nodes);
ClassDB::bind_method(D_METHOD("_emit_change"), &EditorSelection::_emit_change);
ADD_SIGNAL(MethodInfo("selection_changed"));