| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  cpu_particles_2d_editor_plugin.cpp                                   */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "cpu_particles_2d_editor_plugin.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "canvas_item_editor_plugin.h"
 | 
					
						
							|  |  |  | #include "core/io/image_loader.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | #include "editor/editor_file_dialog.h"
 | 
					
						
							|  |  |  | #include "editor/editor_node.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | #include "scene/2d/cpu_particles_2d.h"
 | 
					
						
							|  |  |  | #include "scene/gui/separator.h"
 | 
					
						
							|  |  |  | #include "scene/resources/particles_material.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::edit(Object *p_object) { | 
					
						
							|  |  |  | 	particles = Object::cast_to<CPUParticles2D>(p_object); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool CPUParticles2DEditorPlugin::handles(Object *p_object) const { | 
					
						
							|  |  |  | 	return p_object->is_class("CPUParticles2D"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::make_visible(bool p_visible) { | 
					
						
							|  |  |  | 	if (p_visible) { | 
					
						
							|  |  |  | 		toolbar->show(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		toolbar->hide(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::_file_selected(const String &p_file) { | 
					
						
							|  |  |  | 	source_emission_file = p_file; | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	emission_mask->popup_centered(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::_menu_callback(int p_idx) { | 
					
						
							|  |  |  | 	switch (p_idx) { | 
					
						
							|  |  |  | 		case MENU_LOAD_EMISSION_MASK: { | 
					
						
							| 
									
										
										
										
											2020-07-11 18:45:19 +02:00
										 |  |  | 			file->popup_file_dialog(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_CLEAR_EMISSION_MASK: { | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 			emission_mask->popup_centered(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-06-21 22:33:11 -07:00
										 |  |  | 		case MENU_RESTART: { | 
					
						
							|  |  |  | 			particles->restart(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::_generate_emission_mask() { | 
					
						
							|  |  |  | 	Ref<Image> img; | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	img.instantiate(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	Error err = ImageLoader::load_image(source_emission_file, img); | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(err != OK, "Error loading image '" + source_emission_file + "'."); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (img->is_compressed()) { | 
					
						
							|  |  |  | 		img->decompress(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	img->convert(Image::FORMAT_RGBA8); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(img->get_format() != Image::FORMAT_RGBA8); | 
					
						
							| 
									
										
										
										
											2021-09-23 20:43:43 +05:45
										 |  |  | 	Size2i s = img->get_size(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	ERR_FAIL_COND(s.width == 0 || s.height == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<Point2> valid_positions; | 
					
						
							|  |  |  | 	Vector<Point2> valid_normals; | 
					
						
							|  |  |  | 	Vector<uint8_t> valid_colors; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	valid_positions.resize(s.width * s.height); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EmissionMode emode = (EmissionMode)emission_mask_mode->get_selected(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (emode == EMISSION_MODE_BORDER_DIRECTED) { | 
					
						
							|  |  |  | 		valid_normals.resize(s.width * s.height); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool capture_colors = emission_colors->is_pressed(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (capture_colors) { | 
					
						
							|  |  |  | 		valid_colors.resize(s.width * s.height * 4); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int vpc = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		Vector<uint8_t> data = img->get_data(); | 
					
						
							|  |  |  | 		const uint8_t *r = data.ptr(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < s.width; i++) { | 
					
						
							|  |  |  | 			for (int j = 0; j < s.height; j++) { | 
					
						
							|  |  |  | 				uint8_t a = r[(j * s.width + i) * 4 + 3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (a > 128) { | 
					
						
							|  |  |  | 					if (emode == EMISSION_MODE_SOLID) { | 
					
						
							|  |  |  | 						if (capture_colors) { | 
					
						
							|  |  |  | 							valid_colors.write[vpc * 4 + 0] = r[(j * s.width + i) * 4 + 0]; | 
					
						
							|  |  |  | 							valid_colors.write[vpc * 4 + 1] = r[(j * s.width + i) * 4 + 1]; | 
					
						
							|  |  |  | 							valid_colors.write[vpc * 4 + 2] = r[(j * s.width + i) * 4 + 2]; | 
					
						
							|  |  |  | 							valid_colors.write[vpc * 4 + 3] = r[(j * s.width + i) * 4 + 3]; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						valid_positions.write[vpc++] = Point2(i, j); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						bool on_border = false; | 
					
						
							|  |  |  | 						for (int x = i - 1; x <= i + 1; x++) { | 
					
						
							|  |  |  | 							for (int y = j - 1; y <= j + 1; y++) { | 
					
						
							|  |  |  | 								if (x < 0 || y < 0 || x >= s.width || y >= s.height || r[(y * s.width + x) * 4 + 3] <= 128) { | 
					
						
							|  |  |  | 									on_border = true; | 
					
						
							|  |  |  | 									break; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 							if (on_border) { | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 								break; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if (on_border) { | 
					
						
							|  |  |  | 							valid_positions.write[vpc] = Point2(i, j); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							if (emode == EMISSION_MODE_BORDER_DIRECTED) { | 
					
						
							|  |  |  | 								Vector2 normal; | 
					
						
							|  |  |  | 								for (int x = i - 2; x <= i + 2; x++) { | 
					
						
							|  |  |  | 									for (int y = j - 2; y <= j + 2; y++) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 										if (x == i && y == j) { | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 											continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 										} | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 										if (x < 0 || y < 0 || x >= s.width || y >= s.height || r[(y * s.width + x) * 4 + 3] <= 128) { | 
					
						
							|  |  |  | 											normal += Vector2(x - i, y - j).normalized(); | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								normal.normalize(); | 
					
						
							|  |  |  | 								valid_normals.write[vpc] = normal; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							if (capture_colors) { | 
					
						
							|  |  |  | 								valid_colors.write[vpc * 4 + 0] = r[(j * s.width + i) * 4 + 0]; | 
					
						
							|  |  |  | 								valid_colors.write[vpc * 4 + 1] = r[(j * s.width + i) * 4 + 1]; | 
					
						
							|  |  |  | 								valid_colors.write[vpc * 4 + 2] = r[(j * s.width + i) * 4 + 2]; | 
					
						
							|  |  |  | 								valid_colors.write[vpc * 4 + 3] = r[(j * s.width + i) * 4 + 3]; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							vpc++; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	valid_positions.resize(vpc); | 
					
						
							|  |  |  | 	if (valid_normals.size()) { | 
					
						
							|  |  |  | 		valid_normals.resize(vpc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 20:57:49 -06:00
										 |  |  | 	ERR_FAIL_COND_MSG(valid_positions.size() == 0, "No pixels with transparency > 128 in image..."); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (capture_colors) { | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		PackedColorArray pca; | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		pca.resize(vpc); | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		Color *pcaw = pca.ptrw(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		for (int i = 0; i < vpc; i += 1) { | 
					
						
							|  |  |  | 			Color color; | 
					
						
							|  |  |  | 			color.r = valid_colors[i * 4 + 0] / 255.0f; | 
					
						
							|  |  |  | 			color.g = valid_colors[i * 4 + 1] / 255.0f; | 
					
						
							|  |  |  | 			color.b = valid_colors[i * 4 + 2] / 255.0f; | 
					
						
							|  |  |  | 			color.a = valid_colors[i * 4 + 3] / 255.0f; | 
					
						
							|  |  |  | 			pcaw[i] = color; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		particles->set_emission_colors(pca); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (valid_normals.size()) { | 
					
						
							|  |  |  | 		particles->set_emission_shape(CPUParticles2D::EMISSION_SHAPE_DIRECTED_POINTS); | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		PackedVector2Array norms; | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		norms.resize(valid_normals.size()); | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		Vector2 *normsw = norms.ptrw(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		for (int i = 0; i < valid_normals.size(); i += 1) { | 
					
						
							|  |  |  | 			normsw[i] = valid_normals[i]; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		particles->set_emission_normals(norms); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		particles->set_emission_shape(CPUParticles2D::EMISSION_SHAPE_POINTS); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		PackedVector2Array points; | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		points.resize(valid_positions.size()); | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		Vector2 *pointsw = points.ptrw(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 		for (int i = 0; i < valid_positions.size(); i += 1) { | 
					
						
							|  |  |  | 			pointsw[i] = valid_positions[i]; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		particles->set_emission_points(points); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2022-02-15 21:44:22 -05:00
										 |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 			menu->get_popup()->connect("id_pressed", callable_mp(this, &CPUParticles2DEditorPlugin::_menu_callback)); | 
					
						
							|  |  |  | 			menu->set_icon(epoints->get_theme_icon(SNAME("CPUParticles2D"), SNAME("EditorIcons"))); | 
					
						
							|  |  |  | 			file->connect("file_selected", callable_mp(this, &CPUParticles2DEditorPlugin::_file_selected)); | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CPUParticles2DEditorPlugin::_bind_methods() { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  | CPUParticles2DEditorPlugin::CPUParticles2DEditorPlugin() { | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	particles = nullptr; | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  | 	undo_redo = EditorNode::get_singleton()->get_undo_redo(); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	toolbar = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	add_control_to_container(CONTAINER_CANVAS_EDITOR_MENU, toolbar); | 
					
						
							|  |  |  | 	toolbar->hide(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toolbar->add_child(memnew(VSeparator)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	menu = memnew(MenuButton); | 
					
						
							| 
									
										
										
										
											2019-06-21 22:33:11 -07:00
										 |  |  | 	menu->get_popup()->add_item(TTR("Restart"), MENU_RESTART); | 
					
						
							| 
									
										
										
										
											2020-04-12 21:45:01 -04:00
										 |  |  | 	menu->get_popup()->add_item(TTR("Load Emission Mask"), MENU_LOAD_EMISSION_MASK); | 
					
						
							| 
									
										
										
										
											2020-03-27 08:44:44 +01:00
										 |  |  | 	menu->set_text(TTR("CPUParticles2D")); | 
					
						
							| 
									
										
										
										
											2019-04-25 10:27:33 -03:00
										 |  |  | 	menu->set_switch_on_hover(true); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	toolbar->add_child(menu); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	file = memnew(EditorFileDialog); | 
					
						
							|  |  |  | 	List<String> ext; | 
					
						
							|  |  |  | 	ImageLoader::get_recognized_extensions(&ext); | 
					
						
							| 
									
										
										
										
											2021-07-24 15:46:25 +02:00
										 |  |  | 	for (const String &E : ext) { | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		file->add_filter("*." + E + "; " + E.to_upper()); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	file->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	toolbar->add_child(file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	epoints = memnew(SpinBox); | 
					
						
							|  |  |  | 	epoints->set_min(1); | 
					
						
							|  |  |  | 	epoints->set_max(8192); | 
					
						
							|  |  |  | 	epoints->set_step(1); | 
					
						
							|  |  |  | 	epoints->set_value(512); | 
					
						
							|  |  |  | 	file->get_vbox()->add_margin_child(TTR("Generated Point Count:"), epoints); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	emission_mask = memnew(ConfirmationDialog); | 
					
						
							|  |  |  | 	emission_mask->set_title(TTR("Load Emission Mask")); | 
					
						
							|  |  |  | 	VBoxContainer *emvb = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	emission_mask->add_child(emvb); | 
					
						
							|  |  |  | 	emission_mask_mode = memnew(OptionButton); | 
					
						
							|  |  |  | 	emvb->add_margin_child(TTR("Emission Mask"), emission_mask_mode); | 
					
						
							| 
									
										
										
										
											2020-01-04 13:33:52 +08:00
										 |  |  | 	emission_mask_mode->add_item(TTR("Solid Pixels"), EMISSION_MODE_SOLID); | 
					
						
							|  |  |  | 	emission_mask_mode->add_item(TTR("Border Pixels"), EMISSION_MODE_BORDER); | 
					
						
							|  |  |  | 	emission_mask_mode->add_item(TTR("Directed Border Pixels"), EMISSION_MODE_BORDER_DIRECTED); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | 	emission_colors = memnew(CheckBox); | 
					
						
							|  |  |  | 	emission_colors->set_text(TTR("Capture from Pixel")); | 
					
						
							|  |  |  | 	emvb->add_margin_child(TTR("Emission Colors"), emission_colors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toolbar->add_child(emission_mask); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	emission_mask->connect("confirmed", callable_mp(this, &CPUParticles2DEditorPlugin::_generate_emission_mask)); | 
					
						
							| 
									
										
										
										
											2019-03-19 17:28:57 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CPUParticles2DEditorPlugin::~CPUParticles2DEditorPlugin() { | 
					
						
							|  |  |  | } |