diff options
author | andybarcia <andybarcia4@gmail.com> | 2021-03-19 12:09:28 +0100 |
---|---|---|
committer | andybarcia <andybarcia4@gmail.com> | 2021-03-19 12:09:28 +0100 |
commit | 558b08e6d91d49780c1f77812177c3c227f96590 (patch) | |
tree | 00cfeae97b97f4b9761b6629794b09a62018a9e5 /editor/plugins | |
parent | 3b380f4cdcfd54ebb1f4b32654618502571a43df (diff) |
Fixes TileMap editor copy bug.
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/tile_map_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tile_map_editor_plugin.cpp b/editor/plugins/tile_map_editor_plugin.cpp index 74b01b3c36..59730a4fd3 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -966,9 +966,9 @@ void TileMapEditor::_update_copydata() { tcd.flip_v = node->is_cell_y_flipped(j, i); tcd.transpose = node->is_cell_transposed(j, i); tcd.autotile_coord = node->get_cell_autotile_coord(j, i); - } - copydata.push_back(tcd); + copydata.push_back(tcd); + } } } } |