|
@@ -57,6 +57,27 @@ void GPUParticles2DEditorPlugin::_file_selected(const String &p_file) {
|
|
|
emission_mask->popup_centered();
|
|
|
}
|
|
|
|
|
|
+void GPUParticles2DEditorPlugin::_selection_changed() {
|
|
|
+ List<Node *> selected_nodes = editor->get_editor_selection()->get_selected_node_list();
|
|
|
+
|
|
|
+ if (selected_particles.is_empty() && selected_nodes.is_empty()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (GPUParticles2D *SP : selected_particles) {
|
|
|
+ SP->set_show_visibility_rect(false);
|
|
|
+ }
|
|
|
+ selected_particles.clear();
|
|
|
+
|
|
|
+ for (Node *P : selected_nodes) {
|
|
|
+ GPUParticles2D *selected_particle = Object::cast_to<GPUParticles2D>(P);
|
|
|
+ if (selected_particle != nullptr) {
|
|
|
+ selected_particle->set_show_visibility_rect(true);
|
|
|
+ selected_particles.push_back(selected_particle);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
void GPUParticles2DEditorPlugin::_menu_callback(int p_idx) {
|
|
|
switch (p_idx) {
|
|
|
case MENU_GENERATE_VISIBILITY_RECT: {
|
|
@@ -334,6 +355,7 @@ void GPUParticles2DEditorPlugin::_notification(int p_what) {
|
|
|
menu->get_popup()->connect("id_pressed", callable_mp(this, &GPUParticles2DEditorPlugin::_menu_callback));
|
|
|
menu->set_icon(menu->get_theme_icon(SNAME("GPUParticles2D"), SNAME("EditorIcons")));
|
|
|
file->connect("file_selected", callable_mp(this, &GPUParticles2DEditorPlugin::_file_selected));
|
|
|
+ EditorNode::get_singleton()->get_editor_selection()->connect("selection_changed", callable_mp(this, &GPUParticles2DEditorPlugin::_selection_changed));
|
|
|
}
|
|
|
}
|
|
|
|