Merge pull request #33513 from nekomatata/multi-selection-focus

Keep focus on the top-most node for multi-selection in scene tree
This commit is contained in:
Rémi Verschelde 2019-11-10 10:06:16 +01:00 committed by GitHub
commit b2ff90fecf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 8 deletions

View file

@ -71,6 +71,7 @@
#include "editor/import/resource_importer_texture.h" #include "editor/import/resource_importer_texture.h"
#include "editor/import/resource_importer_texture_atlas.h" #include "editor/import/resource_importer_texture_atlas.h"
#include "editor/import/resource_importer_wav.h" #include "editor/import/resource_importer_wav.h"
#include "editor/multi_node_edit.h"
#include "editor/plugins/animation_blend_space_1d_editor.h" #include "editor/plugins/animation_blend_space_1d_editor.h"
#include "editor/plugins/animation_blend_space_2d_editor.h" #include "editor/plugins/animation_blend_space_2d_editor.h"
#include "editor/plugins/animation_blend_tree_editor_plugin.h" #include "editor/plugins/animation_blend_tree_editor_plugin.h"
@ -1742,15 +1743,37 @@ void EditorNode::_edit_current() {
} else { } else {
Node *selected_node = NULL;
if (current_obj->is_class("ScriptEditorDebuggerInspectedObject")) { if (current_obj->is_class("ScriptEditorDebuggerInspectedObject")) {
editable_warning = TTR("This is a remote object, so changes to it won't be kept.\nPlease read the documentation relevant to debugging to better understand this workflow."); editable_warning = TTR("This is a remote object, so changes to it won't be kept.\nPlease read the documentation relevant to debugging to better understand this workflow.");
capitalize = false; capitalize = false;
disable_folding = true; disable_folding = true;
} else if (current_obj->is_class("MultiNodeEdit")) {
Node *scene = get_edited_scene();
if (scene) {
MultiNodeEdit *multi_node_edit = Object::cast_to<MultiNodeEdit>(current_obj);
int node_count = multi_node_edit->get_node_count();
if (node_count > 0) {
List<Node *> multi_nodes;
for (int node_index = 0; node_index < node_count; ++node_index) {
Node *node = scene->get_node(multi_node_edit->get_node(node_index));
if (node) {
multi_nodes.push_back(node);
}
}
if (!multi_nodes.empty()) {
// Pick the top-most node
multi_nodes.sort_custom<Node::Comparator>();
selected_node = multi_nodes.front()->get();
}
}
}
} }
get_inspector()->edit(current_obj); get_inspector()->edit(current_obj);
node_dock->set_node(NULL); node_dock->set_node(NULL);
scene_tree_dock->set_selected(NULL); scene_tree_dock->set_selected(selected_node);
inspector_dock->update(NULL); inspector_dock->update(NULL);
} }

View file

@ -34,12 +34,10 @@
#include "editor_node.h" #include "editor_node.h"
bool MultiNodeEdit::_set(const StringName &p_name, const Variant &p_value) { bool MultiNodeEdit::_set(const StringName &p_name, const Variant &p_value) {
return _set_impl(p_name, p_value, ""); return _set_impl(p_name, p_value, "");
} }
bool MultiNodeEdit::_set_impl(const StringName &p_name, const Variant &p_value, const String &p_field) { bool MultiNodeEdit::_set_impl(const StringName &p_name, const Variant &p_value, const String &p_field) {
Node *es = EditorNode::get_singleton()->get_edited_scene(); Node *es = EditorNode::get_singleton()->get_edited_scene();
if (!es) if (!es)
return false; return false;
@ -88,7 +86,6 @@ bool MultiNodeEdit::_set_impl(const StringName &p_name, const Variant &p_value,
} }
bool MultiNodeEdit::_get(const StringName &p_name, Variant &r_ret) const { bool MultiNodeEdit::_get(const StringName &p_name, Variant &r_ret) const {
Node *es = EditorNode::get_singleton()->get_edited_scene(); Node *es = EditorNode::get_singleton()->get_edited_scene();
if (!es) if (!es)
return false; return false;
@ -117,7 +114,6 @@ bool MultiNodeEdit::_get(const StringName &p_name, Variant &r_ret) const {
} }
void MultiNodeEdit::_get_property_list(List<PropertyInfo> *p_list) const { void MultiNodeEdit::_get_property_list(List<PropertyInfo> *p_list) const {
HashMap<String, PLData> usage; HashMap<String, PLData> usage;
Node *es = EditorNode::get_singleton()->get_edited_scene(); Node *es = EditorNode::get_singleton()->get_edited_scene();
@ -171,17 +167,23 @@ void MultiNodeEdit::_get_property_list(List<PropertyInfo> *p_list) const {
} }
void MultiNodeEdit::clear_nodes() { void MultiNodeEdit::clear_nodes() {
nodes.clear(); nodes.clear();
} }
void MultiNodeEdit::add_node(const NodePath &p_node) { void MultiNodeEdit::add_node(const NodePath &p_node) {
nodes.push_back(p_node); nodes.push_back(p_node);
} }
void MultiNodeEdit::set_property_field(const StringName &p_property, const Variant &p_value, const String &p_field) { int MultiNodeEdit::get_node_count() const {
return nodes.size();
}
NodePath MultiNodeEdit::get_node(int p_index) const {
ERR_FAIL_INDEX_V(p_index, nodes.size(), NodePath());
return nodes[p_index];
}
void MultiNodeEdit::set_property_field(const StringName &p_property, const Variant &p_value, const String &p_field) {
_set_impl(p_property, p_value, p_field); _set_impl(p_property, p_value, p_field);
} }

View file

@ -54,6 +54,9 @@ public:
void clear_nodes(); void clear_nodes();
void add_node(const NodePath &p_node); void add_node(const NodePath &p_node);
int get_node_count() const;
NodePath get_node(int p_index) const;
void set_property_field(const StringName &p_property, const Variant &p_value, const String &p_field); void set_property_field(const StringName &p_property, const Variant &p_value, const String &p_field);
MultiNodeEdit(); MultiNodeEdit();