| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  mesh_editor_plugin.cpp                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-01 22:01:57 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02: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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | #include "mesh_editor_plugin.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | void MeshEditor::_gui_input(Ref<InputEvent> p_event) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	Ref<InputEventMouseMotion> mm = p_event; | 
					
						
							|  |  |  | 	if (mm.is_valid() && mm->get_button_mask() & BUTTON_MASK_LEFT) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 		rot_x -= mm->get_relative().y * 0.01; | 
					
						
							|  |  |  | 		rot_y -= mm->get_relative().x * 0.01; | 
					
						
							|  |  |  | 		if (rot_x < -Math_PI / 2) | 
					
						
							|  |  |  | 			rot_x = -Math_PI / 2; | 
					
						
							|  |  |  | 		else if (rot_x > Math_PI / 2) { | 
					
						
							|  |  |  | 			rot_x = Math_PI / 2; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		_update_rotation(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditor::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	if (p_what == NOTIFICATION_FIXED_PROCESS) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	if (p_what == NOTIFICATION_READY) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		//get_scene()->connect("node_removed",this,"_node_removed");
 | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		if (first_enter) { | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 			//it's in propertyeditor so. could be moved around
 | 
					
						
							| 
									
										
										
										
											2015-11-22 20:08:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 			light_1_switch->set_normal_texture(get_icon("MaterialPreviewLight1", "EditorIcons")); | 
					
						
							|  |  |  | 			light_1_switch->set_pressed_texture(get_icon("MaterialPreviewLight1Off", "EditorIcons")); | 
					
						
							|  |  |  | 			light_2_switch->set_normal_texture(get_icon("MaterialPreviewLight2", "EditorIcons")); | 
					
						
							|  |  |  | 			light_2_switch->set_pressed_texture(get_icon("MaterialPreviewLight2Off", "EditorIcons")); | 
					
						
							|  |  |  | 			first_enter = false; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-22 20:08:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	if (p_what == NOTIFICATION_DRAW) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 		Ref<Texture> checkerboard = get_icon("Checkerboard", "EditorIcons"); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		Size2 size = get_size(); | 
					
						
							| 
									
										
										
										
											2015-11-22 20:08:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 		//draw_texture_rect(checkerboard, Rect2(Point2(), size), true);
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditor::_update_rotation() { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	Transform t; | 
					
						
							| 
									
										
										
										
											2016-10-18 15:50:21 -05:00
										 |  |  | 	t.basis.rotate(Vector3(0, 1, 0), -rot_y); | 
					
						
							|  |  |  | 	t.basis.rotate(Vector3(1, 0, 0), -rot_x); | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	rotation->set_transform(t); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditor::edit(Ref<Mesh> p_mesh) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	mesh = p_mesh; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	mesh_instance->set_mesh(mesh); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	if (mesh.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		hide(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 		rot_x = 0; | 
					
						
							|  |  |  | 		rot_y = 0; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		_update_rotation(); | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 		Rect3 aabb = mesh->get_aabb(); | 
					
						
							|  |  |  | 		print_line("aabb: " + aabb); | 
					
						
							|  |  |  | 		Vector3 ofs = aabb.position + aabb.size * 0.5; | 
					
						
							|  |  |  | 		float m = aabb.get_longest_axis_size(); | 
					
						
							|  |  |  | 		if (m != 0) { | 
					
						
							|  |  |  | 			m = 1.0 / m; | 
					
						
							|  |  |  | 			m *= 0.5; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 			//print_line("scale: "+rtos(m));
 | 
					
						
							|  |  |  | 			Transform xform; | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 			xform.basis.scale(Vector3(m, m, m)); | 
					
						
							|  |  |  | 			xform.origin = -xform.basis.xform(ofs); //-ofs*m;
 | 
					
						
							|  |  |  | 			//xform.origin.z -= aabb.get_longest_axis_size() * 2;
 | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 			mesh_instance->set_transform(xform); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | void MeshEditor::_button_pressed(Node *p_button) { | 
					
						
							| 
									
										
										
										
											2015-11-22 20:08:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	if (p_button == light_1_switch) { | 
					
						
							|  |  |  | 		light1->set_visible(!light_1_switch->is_pressed()); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	if (p_button == light_2_switch) { | 
					
						
							|  |  |  | 		light2->set_visible(!light_2_switch->is_pressed()); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditor::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_gui_input"), &MeshEditor::_gui_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_button_pressed"), &MeshEditor::_button_pressed); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | MeshEditor::MeshEditor() { | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	viewport = memnew(Viewport); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	Ref<World> world; | 
					
						
							|  |  |  | 	world.instance(); | 
					
						
							|  |  |  | 	viewport->set_world(world); //use own world
 | 
					
						
							|  |  |  | 	add_child(viewport); | 
					
						
							| 
									
										
										
										
											2016-08-16 12:10:44 -03:00
										 |  |  | 	viewport->set_disable_input(true); | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	set_stretch(true); | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	camera = memnew(Camera); | 
					
						
							|  |  |  | 	camera->set_transform(Transform(Basis(), Vector3(0, 0, 1.1))); | 
					
						
							|  |  |  | 	camera->set_perspective(45, 0.1, 10); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	viewport->add_child(camera); | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light1 = memnew(DirectionalLight); | 
					
						
							|  |  |  | 	light1->set_transform(Transform().looking_at(Vector3(-1, -1, -1), Vector3(0, 1, 0))); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	viewport->add_child(light1); | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light2 = memnew(DirectionalLight); | 
					
						
							|  |  |  | 	light2->set_transform(Transform().looking_at(Vector3(0, 1, 0), Vector3(0, 0, 1))); | 
					
						
							|  |  |  | 	light2->set_color(Color(0.7, 0.7, 0.7)); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	viewport->add_child(light2); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	rotation = memnew(Spatial); | 
					
						
							|  |  |  | 	viewport->add_child(rotation); | 
					
						
							|  |  |  | 	mesh_instance = memnew(MeshInstance); | 
					
						
							|  |  |  | 	rotation->add_child(mesh_instance); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	set_custom_minimum_size(Size2(1, 150) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	HBoxContainer *hb = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	add_child(hb); | 
					
						
							|  |  |  | 	hb->set_area_as_parent_rect(2); | 
					
						
							| 
									
										
										
										
											2015-08-29 17:16:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	hb->add_spacer(); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	VBoxContainer *vb_light = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	hb->add_child(vb_light); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light_1_switch = memnew(TextureButton); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	light_1_switch->set_toggle_mode(true); | 
					
						
							|  |  |  | 	vb_light->add_child(light_1_switch); | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light_1_switch->connect("pressed", this, "_button_pressed", varray(light_1_switch)); | 
					
						
							| 
									
										
										
										
											2015-10-18 13:31:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light_2_switch = memnew(TextureButton); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	light_2_switch->set_toggle_mode(true); | 
					
						
							|  |  |  | 	vb_light->add_child(light_2_switch); | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	light_2_switch->connect("pressed", this, "_button_pressed", varray(light_2_switch)); | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	first_enter = true; | 
					
						
							| 
									
										
										
										
											2015-04-03 10:28:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	rot_x = 0; | 
					
						
							|  |  |  | 	rot_y = 0; | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditorPlugin::edit(Object *p_object) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 	Mesh *s = Object::cast_to<Mesh>(p_object); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	if (!s) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mesh_editor->edit(Ref<Mesh>(s)); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | bool MeshEditorPlugin::handles(Object *p_object) const { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	return p_object->is_class("Mesh"); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | void MeshEditorPlugin::make_visible(bool p_visible) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_visible) { | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		mesh_editor->show(); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		//mesh_editor->set_process(true);
 | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 		mesh_editor->hide(); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		//mesh_editor->set_process(false);
 | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | MeshEditorPlugin::MeshEditorPlugin(EditorNode *p_node) { | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | 	editor = p_node; | 
					
						
							|  |  |  | 	mesh_editor = memnew(MeshEditor); | 
					
						
							|  |  |  | 	add_control_to_container(CONTAINER_PROPERTY_EDITOR_BOTTOM, mesh_editor); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | 	mesh_editor->hide(); | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-23 18:48:05 -03:00
										 |  |  | MeshEditorPlugin::~MeshEditorPlugin() { | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  | } |