diff options
author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-12-20 15:43:44 -0200 |
---|---|---|
committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-12-20 15:43:44 -0200 |
commit | 9eb4bb044feb54fa5b45a3f29f111510df248128 (patch) | |
tree | 6d0e0057a8ce3e59941916810df8785963bb4249 | |
parent | 3bdd1ff3875450d90f7a695aa5d527a47558d80c (diff) |
Add bind for TileMap::get_cell_autotile_coord
-rw-r--r-- | scene/2d/tile_map.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/2d/tile_map.cpp b/scene/2d/tile_map.cpp index ee76a90019..96bbfffec1 100644 --- a/scene/2d/tile_map.cpp +++ b/scene/2d/tile_map.cpp @@ -1630,6 +1630,8 @@ void TileMap::_bind_methods() { ClassDB::bind_method(D_METHOD("is_cell_y_flipped", "x", "y"), &TileMap::is_cell_y_flipped); ClassDB::bind_method(D_METHOD("is_cell_transposed", "x", "y"), &TileMap::is_cell_transposed); + ClassDB::bind_method(D_METHOD("get_cell_autotile_coord", "x", "y"), &TileMap::get_cell_autotile_coord); + ClassDB::bind_method(D_METHOD("fix_invalid_tiles"), &TileMap::fix_invalid_tiles); ClassDB::bind_method(D_METHOD("clear"), &TileMap::clear); |