diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index e79cbd0d35..0b088f7171 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -37,24 +37,18 @@ void TileSetEditor::edit(const Ref &p_tileset) { tileset = p_tileset; } -void TileSetEditor::_import_scene(Node *scene, Ref p_library, bool p_merge) { +void TileSetEditor::_import_node(Node *p_node, Ref p_library) { - if (!p_merge) - p_library->clear(); + for (int i = 0; i < p_node->get_child_count(); i++) { - for (int i = 0; i < scene->get_child_count(); i++) { - - Node *child = scene->get_child(i); + Node *child = p_node->get_child(i); if (!child->cast_to()) { if (child->get_child_count() > 0) { - child = child->get_child(0); - if (!child->cast_to()) { - continue; - } + _import_node(child, p_library); + } - } else - continue; + continue; } Sprite *mi = child->cast_to(); @@ -138,6 +132,14 @@ void TileSetEditor::_import_scene(Node *scene, Ref p_library, bool p_me } } +void TileSetEditor::_import_scene(Node *scene, Ref p_library, bool p_merge) { + + if (!p_merge) + p_library->clear(); + + _import_node(scene, p_library); +} + void TileSetEditor::_menu_confirm() { switch (option) { diff --git a/editor/plugins/tile_set_editor_plugin.h b/editor/plugins/tile_set_editor_plugin.h index 42084c05a3..d04ebc7197 100644 --- a/editor/plugins/tile_set_editor_plugin.h +++ b/editor/plugins/tile_set_editor_plugin.h @@ -59,6 +59,7 @@ class TileSetEditor : public Control { void _menu_confirm(); void _name_dialog_confirm(const String &name); + static void _import_node(Node *p_node, Ref p_library); static void _import_scene(Node *p_scene, Ref p_library, bool p_merge); protected: