1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Merge pull request #112729 from KoBeWi/multi_group_yoink

Edit groups on multiple nodes
This commit is contained in:
Thaddeus Crews
2025-11-20 16:47:07 -06:00
8 changed files with 154 additions and 89 deletions

View File

@@ -237,6 +237,9 @@ class ConnectionsDock : public VBoxContainer {
SLOT_MENU_DISCONNECT,
};
VBoxContainer *holder = nullptr;
Label *select_a_node = nullptr;
Object *selected_object = nullptr;
ConnectionsDockTree *tree = nullptr;
@@ -282,7 +285,7 @@ protected:
static void _bind_methods();
public:
void set_object(Object *p_obj);
void set_selection(const Vector<Object *> &p_objects);
void update_tree();
ConnectionsDock();