diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-29 16:33:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 16:33:24 +0200 |
commit | cfa6a1d7ab29192b225e4f719662a2fc76266bad (patch) | |
tree | fccba80f1dff35af94448ef85fd337f9b1870f07 /editor | |
parent | 907b7a389736f10b22bb4f63688f489ed1d7f30a (diff) | |
parent | 20bea1e231223bf6e1de9899807b810f6e9f057d (diff) |
Merge pull request #21563 from marcelofg55/_set_celld
Unexpose TileMap set_celld
Diffstat (limited to 'editor')
-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 598f7034d8..58c3fd015e 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -238,8 +238,8 @@ void TileMapEditor::_create_set_cell_undo(const Vector2 &p_vec, const CellOp &p_ cell_new["transpose"] = p_cell_new.tr; cell_new["auto_coord"] = p_cell_new.ac; - undo_redo->add_undo_method(node, "set_celld", p_vec, cell_old); - undo_redo->add_do_method(node, "set_celld", p_vec, cell_new); + undo_redo->add_undo_method(node, "_set_celld", p_vec, cell_old); + undo_redo->add_do_method(node, "_set_celld", p_vec, cell_new); } void TileMapEditor::_start_undo(const String &p_action) { |