123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615 |
- /*************************************************************************/
- /* sprite_editor_plugin.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
- /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
- /* */
- /* 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 "sprite_editor_plugin.h"
- #include "canvas_item_editor_plugin.h"
- #include "editor/editor_scale.h"
- #include "scene/2d/collision_polygon_2d.h"
- #include "scene/2d/light_occluder_2d.h"
- #include "scene/2d/mesh_instance_2d.h"
- #include "scene/2d/polygon_2d.h"
- #include "scene/gui/box_container.h"
- #include "thirdparty/misc/clipper.hpp"
- void SpriteEditor::_node_removed(Node *p_node) {
- if (p_node == node) {
- node = NULL;
- options->hide();
- }
- }
- void SpriteEditor::edit(Sprite *p_sprite) {
- node = p_sprite;
- }
- #define PRECISION 10.0
- Vector<Vector2> expand(const Vector<Vector2> &points, const Rect2i &rect, float epsilon = 2.0) {
- int size = points.size();
- ERR_FAIL_COND_V(size < 2, Vector<Vector2>());
- ClipperLib::Path subj;
- ClipperLib::PolyTree solution;
- ClipperLib::PolyTree out;
- for (int i = 0; i < points.size(); i++) {
- subj << ClipperLib::IntPoint(points[i].x * PRECISION, points[i].y * PRECISION);
- }
- ClipperLib::ClipperOffset co;
- co.AddPath(subj, ClipperLib::jtMiter, ClipperLib::etClosedPolygon);
- co.Execute(solution, epsilon * PRECISION);
- ClipperLib::PolyNode *p = solution.GetFirst();
- ERR_FAIL_COND_V(!p, points);
- while (p->IsHole()) {
- p = p->GetNext();
- }
- //turn the result into simply polygon (AKA, fix overlap)
- //clamp into the specified rect
- ClipperLib::Clipper cl;
- cl.StrictlySimple(true);
- cl.AddPath(p->Contour, ClipperLib::ptSubject, true);
- //create the clipping rect
- ClipperLib::Path clamp;
- clamp.push_back(ClipperLib::IntPoint(0, 0));
- clamp.push_back(ClipperLib::IntPoint(rect.size.width * PRECISION, 0));
- clamp.push_back(ClipperLib::IntPoint(rect.size.width * PRECISION, rect.size.height * PRECISION));
- clamp.push_back(ClipperLib::IntPoint(0, rect.size.height * PRECISION));
- cl.AddPath(clamp, ClipperLib::ptClip, true);
- cl.Execute(ClipperLib::ctIntersection, out);
- Vector<Vector2> outPoints;
- ClipperLib::PolyNode *p2 = out.GetFirst();
- ERR_FAIL_COND_V(!p2, points);
- while (p2->IsHole()) {
- p2 = p2->GetNext();
- }
- int lasti = p2->Contour.size() - 1;
- Vector2 prev = Vector2(p2->Contour[lasti].X / PRECISION, p2->Contour[lasti].Y / PRECISION);
- for (uint64_t i = 0; i < p2->Contour.size(); i++) {
- Vector2 cur = Vector2(p2->Contour[i].X / PRECISION, p2->Contour[i].Y / PRECISION);
- if (cur.distance_to(prev) > 0.5) {
- outPoints.push_back(cur);
- prev = cur;
- }
- }
- return outPoints;
- }
- void SpriteEditor::_menu_option(int p_option) {
- if (!node) {
- return;
- }
- selected_menu_item = (Menu)p_option;
- switch (p_option) {
- case MENU_OPTION_CONVERT_TO_MESH_2D: {
- debug_uv_dialog->get_ok()->set_text(TTR("Create Mesh2D"));
- debug_uv_dialog->set_title(TTR("Mesh2D Preview"));
- _update_mesh_data();
- debug_uv_dialog->popup_centered();
- debug_uv->update();
- } break;
- case MENU_OPTION_CONVERT_TO_POLYGON_2D: {
- debug_uv_dialog->get_ok()->set_text(TTR("Create Polygon2D"));
- debug_uv_dialog->set_title(TTR("Polygon2D Preview"));
- _update_mesh_data();
- debug_uv_dialog->popup_centered();
- debug_uv->update();
- } break;
- case MENU_OPTION_CREATE_COLLISION_POLY_2D: {
- debug_uv_dialog->get_ok()->set_text(TTR("Create CollisionPolygon2D"));
- debug_uv_dialog->set_title(TTR("CollisionPolygon2D Preview"));
- _update_mesh_data();
- debug_uv_dialog->popup_centered();
- debug_uv->update();
- } break;
- case MENU_OPTION_CREATE_LIGHT_OCCLUDER_2D: {
- debug_uv_dialog->get_ok()->set_text(TTR("Create LightOccluder2D"));
- debug_uv_dialog->set_title(TTR("LightOccluder2D Preview"));
- _update_mesh_data();
- debug_uv_dialog->popup_centered();
- debug_uv->update();
- } break;
- }
- }
- void SpriteEditor::_update_mesh_data() {
- Ref<Texture2D> texture = node->get_texture();
- if (texture.is_null()) {
- err_dialog->set_text(TTR("Sprite is empty!"));
- err_dialog->popup_centered_minsize();
- return;
- }
- if (node->get_hframes() > 1 || node->get_vframes() > 1) {
- err_dialog->set_text(TTR("Can't convert a sprite using animation frames to mesh."));
- err_dialog->popup_centered_minsize();
- return;
- }
- Ref<Image> image = texture->get_data();
- ERR_FAIL_COND(image.is_null());
- Rect2 rect;
- if (node->is_region())
- rect = node->get_region_rect();
- else
- rect.size = Size2(image->get_width(), image->get_height());
- Ref<BitMap> bm;
- bm.instance();
- bm->create_from_image_alpha(image);
- int shrink = shrink_pixels->get_value();
- if (shrink > 0) {
- bm->shrink_mask(shrink, rect);
- }
- int grow = grow_pixels->get_value();
- if (grow > 0) {
- bm->grow_mask(grow, rect);
- }
- float epsilon = simplification->get_value();
- Vector<Vector<Vector2> > lines = bm->clip_opaque_to_polygons(rect, epsilon);
- uv_lines.clear();
- computed_vertices.clear();
- computed_uv.clear();
- computed_indices.clear();
- Size2 img_size = Vector2(image->get_width(), image->get_height());
- for (int i = 0; i < lines.size(); i++) {
- lines.write[i] = expand(lines[i], rect, epsilon);
- }
- if (selected_menu_item == MENU_OPTION_CONVERT_TO_MESH_2D) {
- for (int j = 0; j < lines.size(); j++) {
- int index_ofs = computed_vertices.size();
- for (int i = 0; i < lines[j].size(); i++) {
- Vector2 vtx = lines[j][i];
- computed_uv.push_back(vtx / img_size);
- vtx -= rect.position; //offset by rect position
- //flip if flipped
- if (node->is_flipped_h())
- vtx.x = rect.size.x - vtx.x - 1.0;
- if (node->is_flipped_v())
- vtx.y = rect.size.y - vtx.y - 1.0;
- if (node->is_centered())
- vtx -= rect.size / 2.0;
- computed_vertices.push_back(vtx);
- }
- Vector<int> poly = Geometry::triangulate_polygon(lines[j]);
- for (int i = 0; i < poly.size(); i += 3) {
- for (int k = 0; k < 3; k++) {
- int idx = i + k;
- int idxn = i + (k + 1) % 3;
- uv_lines.push_back(lines[j][poly[idx]]);
- uv_lines.push_back(lines[j][poly[idxn]]);
- computed_indices.push_back(poly[idx] + index_ofs);
- }
- }
- }
- }
- outline_lines.clear();
- computed_outline_lines.clear();
- if (selected_menu_item == MENU_OPTION_CONVERT_TO_POLYGON_2D || selected_menu_item == MENU_OPTION_CREATE_COLLISION_POLY_2D || selected_menu_item == MENU_OPTION_CREATE_LIGHT_OCCLUDER_2D) {
- outline_lines.resize(lines.size());
- computed_outline_lines.resize(lines.size());
- for (int pi = 0; pi < lines.size(); pi++) {
- Vector<Vector2> ol;
- Vector<Vector2> col;
- ol.resize(lines[pi].size());
- col.resize(lines[pi].size());
- for (int i = 0; i < lines[pi].size(); i++) {
- Vector2 vtx = lines[pi][i];
- ol.write[i] = vtx;
- vtx -= rect.position; //offset by rect position
- //flip if flipped
- if (node->is_flipped_h())
- vtx.x = rect.size.x - vtx.x - 1.0;
- if (node->is_flipped_v())
- vtx.y = rect.size.y - vtx.y - 1.0;
- if (node->is_centered())
- vtx -= rect.size / 2.0;
- col.write[i] = vtx;
- }
- outline_lines.write[pi] = ol;
- computed_outline_lines.write[pi] = col;
- }
- }
- debug_uv->update();
- }
- void SpriteEditor::_create_node() {
- switch (selected_menu_item) {
- case MENU_OPTION_CONVERT_TO_MESH_2D: {
- _convert_to_mesh_2d_node();
- } break;
- case MENU_OPTION_CONVERT_TO_POLYGON_2D: {
- _convert_to_polygon_2d_node();
- } break;
- case MENU_OPTION_CREATE_COLLISION_POLY_2D: {
- _create_collision_polygon_2d_node();
- } break;
- case MENU_OPTION_CREATE_LIGHT_OCCLUDER_2D: {
- _create_light_occluder_2d_node();
- } break;
- }
- }
- void SpriteEditor::_convert_to_mesh_2d_node() {
- if (computed_vertices.size() < 3) {
- err_dialog->set_text(TTR("Invalid geometry, can't replace by mesh."));
- err_dialog->popup_centered_minsize();
- return;
- }
- Ref<ArrayMesh> mesh;
- mesh.instance();
- Array a;
- a.resize(Mesh::ARRAY_MAX);
- a[Mesh::ARRAY_VERTEX] = computed_vertices;
- a[Mesh::ARRAY_TEX_UV] = computed_uv;
- a[Mesh::ARRAY_INDEX] = computed_indices;
- mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, a, Array(), Dictionary(), Mesh::ARRAY_FLAG_USE_2D_VERTICES);
- MeshInstance2D *mesh_instance = memnew(MeshInstance2D);
- mesh_instance->set_mesh(mesh);
- UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
- ur->create_action(TTR("Convert to Mesh2D"));
- ur->add_do_method(EditorNode::get_singleton()->get_scene_tree_dock(), "replace_node", node, mesh_instance, true, false);
- ur->add_do_reference(mesh_instance);
- ur->add_undo_method(EditorNode::get_singleton()->get_scene_tree_dock(), "replace_node", mesh_instance, node, false, false);
- ur->add_undo_reference(node);
- ur->commit_action();
- }
- void SpriteEditor::_convert_to_polygon_2d_node() {
- if (computed_outline_lines.empty()) {
- err_dialog->set_text(TTR("Invalid geometry, can't create polygon."));
- err_dialog->popup_centered_minsize();
- return;
- }
- Polygon2D *polygon_2d_instance = memnew(Polygon2D);
- int total_point_count = 0;
- for (int i = 0; i < computed_outline_lines.size(); i++)
- total_point_count += computed_outline_lines[i].size();
- PackedVector2Array polygon;
- polygon.resize(total_point_count);
- Vector2 *polygon_write = polygon.ptrw();
- PackedVector2Array uvs;
- uvs.resize(total_point_count);
- Vector2 *uvs_write = uvs.ptrw();
- int current_point_index = 0;
- Array polys;
- polys.resize(computed_outline_lines.size());
- for (int i = 0; i < computed_outline_lines.size(); i++) {
- Vector<Vector2> outline = computed_outline_lines[i];
- Vector<Vector2> uv_outline = outline_lines[i];
- PackedInt32Array pia;
- pia.resize(outline.size());
- int *pia_write = pia.ptrw();
- for (int pi = 0; pi < outline.size(); pi++) {
- polygon_write[current_point_index] = outline[pi];
- uvs_write[current_point_index] = uv_outline[pi];
- pia_write[pi] = current_point_index;
- current_point_index++;
- }
- polys[i] = pia;
- }
- polygon_2d_instance->set_uv(uvs);
- polygon_2d_instance->set_polygon(polygon);
- polygon_2d_instance->set_polygons(polys);
- UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
- ur->create_action(TTR("Convert to Polygon2D"));
- ur->add_do_method(EditorNode::get_singleton()->get_scene_tree_dock(), "replace_node", node, polygon_2d_instance, true, false);
- ur->add_do_reference(polygon_2d_instance);
- ur->add_undo_method(EditorNode::get_singleton()->get_scene_tree_dock(), "replace_node", polygon_2d_instance, node, false, false);
- ur->add_undo_reference(node);
- ur->commit_action();
- }
- void SpriteEditor::_create_collision_polygon_2d_node() {
- if (computed_outline_lines.empty()) {
- err_dialog->set_text(TTR("Invalid geometry, can't create collision polygon."));
- err_dialog->popup_centered_minsize();
- return;
- }
- for (int i = 0; i < computed_outline_lines.size(); i++) {
- Vector<Vector2> outline = computed_outline_lines[i];
- CollisionPolygon2D *collision_polygon_2d_instance = memnew(CollisionPolygon2D);
- collision_polygon_2d_instance->set_polygon(outline);
- UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
- ur->create_action(TTR("Create CollisionPolygon2D Sibling"));
- ur->add_do_method(this, "_add_as_sibling_or_child", node, collision_polygon_2d_instance);
- ur->add_do_reference(collision_polygon_2d_instance);
- ur->add_undo_method(node != this->get_tree()->get_edited_scene_root() ? node->get_parent() : this->get_tree()->get_edited_scene_root(), "remove_child", collision_polygon_2d_instance);
- ur->commit_action();
- }
- }
- void SpriteEditor::_create_light_occluder_2d_node() {
- if (computed_outline_lines.empty()) {
- err_dialog->set_text(TTR("Invalid geometry, can't create light occluder."));
- err_dialog->popup_centered_minsize();
- return;
- }
- for (int i = 0; i < computed_outline_lines.size(); i++) {
- Vector<Vector2> outline = computed_outline_lines[i];
- Ref<OccluderPolygon2D> polygon;
- polygon.instance();
- PackedVector2Array a;
- a.resize(outline.size());
- Vector2 *aw = a.ptrw();
- for (int io = 0; io < outline.size(); io++) {
- aw[io] = outline[io];
- }
- polygon->set_polygon(a);
- LightOccluder2D *light_occluder_2d_instance = memnew(LightOccluder2D);
- light_occluder_2d_instance->set_occluder_polygon(polygon);
- UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
- ur->create_action(TTR("Create LightOccluder2D Sibling"));
- ur->add_do_method(this, "_add_as_sibling_or_child", node, light_occluder_2d_instance);
- ur->add_do_reference(light_occluder_2d_instance);
- ur->add_undo_method(node != this->get_tree()->get_edited_scene_root() ? node->get_parent() : this->get_tree()->get_edited_scene_root(), "remove_child", light_occluder_2d_instance);
- ur->commit_action();
- }
- }
- void SpriteEditor::_add_as_sibling_or_child(Node *p_own_node, Node *p_new_node) {
- // Can't make sibling if own node is scene root
- if (p_own_node != this->get_tree()->get_edited_scene_root()) {
- p_own_node->get_parent()->add_child(p_new_node, true);
- Object::cast_to<Node2D>(p_new_node)->set_transform(Object::cast_to<Node2D>(p_own_node)->get_transform());
- } else {
- p_own_node->add_child(p_new_node, true);
- }
- p_new_node->set_owner(this->get_tree()->get_edited_scene_root());
- }
- void SpriteEditor::_debug_uv_draw() {
- Ref<Texture2D> tex = node->get_texture();
- ERR_FAIL_COND(!tex.is_valid());
- Point2 draw_pos_offset = Point2(1.0, 1.0);
- Size2 draw_size_offset = Size2(2.0, 2.0);
- debug_uv->set_clip_contents(true);
- debug_uv->draw_texture(tex, draw_pos_offset);
- debug_uv->set_custom_minimum_size(tex->get_size() + draw_size_offset);
- debug_uv->draw_set_transform(draw_pos_offset, 0, Size2(1.0, 1.0));
- Color color = Color(1.0, 0.8, 0.7);
- if (selected_menu_item == MENU_OPTION_CONVERT_TO_MESH_2D && uv_lines.size() > 0) {
- debug_uv->draw_multiline(uv_lines, color);
- } else if ((selected_menu_item == MENU_OPTION_CONVERT_TO_POLYGON_2D || selected_menu_item == MENU_OPTION_CREATE_COLLISION_POLY_2D || selected_menu_item == MENU_OPTION_CREATE_LIGHT_OCCLUDER_2D) && outline_lines.size() > 0) {
- for (int i = 0; i < outline_lines.size(); i++) {
- Vector<Vector2> outline = outline_lines[i];
- debug_uv->draw_polyline(outline, color);
- debug_uv->draw_line(outline[0], outline[outline.size() - 1], color);
- }
- }
- }
- void SpriteEditor::_bind_methods() {
- ClassDB::bind_method("_menu_option", &SpriteEditor::_menu_option);
- ClassDB::bind_method("_debug_uv_draw", &SpriteEditor::_debug_uv_draw);
- ClassDB::bind_method("_update_mesh_data", &SpriteEditor::_update_mesh_data);
- ClassDB::bind_method("_create_node", &SpriteEditor::_create_node);
- ClassDB::bind_method("_add_as_sibling_or_child", &SpriteEditor::_add_as_sibling_or_child);
- }
- SpriteEditor::SpriteEditor() {
- options = memnew(MenuButton);
- CanvasItemEditor::get_singleton()->add_control_to_menu_panel(options);
- options->set_text(TTR("Sprite"));
- options->set_icon(EditorNode::get_singleton()->get_gui_base()->get_icon("Sprite", "EditorIcons"));
- options->get_popup()->add_item(TTR("Convert to Mesh2D"), MENU_OPTION_CONVERT_TO_MESH_2D);
- options->get_popup()->add_item(TTR("Convert to Polygon2D"), MENU_OPTION_CONVERT_TO_POLYGON_2D);
- options->get_popup()->add_item(TTR("Create CollisionPolygon2D Sibling"), MENU_OPTION_CREATE_COLLISION_POLY_2D);
- options->get_popup()->add_item(TTR("Create LightOccluder2D Sibling"), MENU_OPTION_CREATE_LIGHT_OCCLUDER_2D);
- options->set_switch_on_hover(true);
- options->get_popup()->connect_compat("id_pressed", this, "_menu_option");
- err_dialog = memnew(AcceptDialog);
- add_child(err_dialog);
- debug_uv_dialog = memnew(ConfirmationDialog);
- debug_uv_dialog->get_ok()->set_text(TTR("Create Mesh2D"));
- debug_uv_dialog->set_title("Mesh 2D Preview");
- VBoxContainer *vb = memnew(VBoxContainer);
- debug_uv_dialog->add_child(vb);
- ScrollContainer *scroll = memnew(ScrollContainer);
- scroll->set_custom_minimum_size(Size2(800, 500) * EDSCALE);
- scroll->set_enable_h_scroll(true);
- scroll->set_enable_v_scroll(true);
- vb->add_margin_child(TTR("Preview:"), scroll, true);
- debug_uv = memnew(Control);
- debug_uv->connect_compat("draw", this, "_debug_uv_draw");
- scroll->add_child(debug_uv);
- debug_uv_dialog->connect_compat("confirmed", this, "_create_node");
- HBoxContainer *hb = memnew(HBoxContainer);
- hb->add_child(memnew(Label(TTR("Simplification: "))));
- simplification = memnew(SpinBox);
- simplification->set_min(0.01);
- simplification->set_max(10.00);
- simplification->set_step(0.01);
- simplification->set_value(2);
- hb->add_child(simplification);
- hb->add_spacer();
- hb->add_child(memnew(Label(TTR("Shrink (Pixels): "))));
- shrink_pixels = memnew(SpinBox);
- shrink_pixels->set_min(0);
- shrink_pixels->set_max(10);
- shrink_pixels->set_step(1);
- shrink_pixels->set_value(0);
- hb->add_child(shrink_pixels);
- hb->add_spacer();
- hb->add_child(memnew(Label(TTR("Grow (Pixels): "))));
- grow_pixels = memnew(SpinBox);
- grow_pixels->set_min(0);
- grow_pixels->set_max(10);
- grow_pixels->set_step(1);
- grow_pixels->set_value(2);
- hb->add_child(grow_pixels);
- hb->add_spacer();
- update_preview = memnew(Button);
- update_preview->set_text(TTR("Update Preview"));
- update_preview->connect_compat("pressed", this, "_update_mesh_data");
- hb->add_child(update_preview);
- vb->add_margin_child(TTR("Settings:"), hb);
- add_child(debug_uv_dialog);
- }
- void SpriteEditorPlugin::edit(Object *p_object) {
- sprite_editor->edit(Object::cast_to<Sprite>(p_object));
- }
- bool SpriteEditorPlugin::handles(Object *p_object) const {
- return p_object->is_class("Sprite");
- }
- void SpriteEditorPlugin::make_visible(bool p_visible) {
- if (p_visible) {
- sprite_editor->options->show();
- } else {
- sprite_editor->options->hide();
- sprite_editor->edit(NULL);
- }
- }
- SpriteEditorPlugin::SpriteEditorPlugin(EditorNode *p_node) {
- editor = p_node;
- sprite_editor = memnew(SpriteEditor);
- editor->get_viewport()->add_child(sprite_editor);
- make_visible(false);
- //sprite_editor->options->hide();
- }
- SpriteEditorPlugin::~SpriteEditorPlugin() {
- }
|