diff options
author | kobewi <kobewi4e@gmail.com> | 2022-09-21 00:37:18 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-09-21 00:37:18 +0200 |
commit | a275b70b6e1cd69646f779605e97b71830025888 (patch) | |
tree | 83deb1b5e8b5d397a596e66a193c76eaafb8aa28 /scene/2d/tile_map.cpp | |
parent | c44e1c4e3121ed5933887555315d9ffbfe998999 (diff) |
Set scene tiles' position before adding them
Diffstat (limited to 'scene/2d/tile_map.cpp')
-rw-r--r-- | scene/2d/tile_map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/tile_map.cpp b/scene/2d/tile_map.cpp index 42b76d0136..577284a752 100644 --- a/scene/2d/tile_map.cpp +++ b/scene/2d/tile_map.cpp @@ -1861,7 +1861,6 @@ void TileMap::_scenes_update_dirty_quadrants(SelfList<TileMapQuadrant>::List &r_ Ref<PackedScene> packed_scene = scenes_collection_source->get_scene_tile_scene(c.alternative_tile); if (packed_scene.is_valid()) { Node *scene = packed_scene->instantiate(); - add_child(scene); Control *scene_as_control = Object::cast_to<Control>(scene); Node2D *scene_as_node2d = Object::cast_to<Node2D>(scene); if (scene_as_control) { @@ -1871,6 +1870,7 @@ void TileMap::_scenes_update_dirty_quadrants(SelfList<TileMapQuadrant>::List &r_ xform.set_origin(map_to_local(E_cell)); scene_as_node2d->set_transform(xform * scene_as_node2d->get_transform()); } + add_child(scene); q.scenes[E_cell] = scene->get_name(); } } |