Merge pull request #24509 from guilhermefelipecgs/fix_24273

Add bind for TileMap::get_cell_autotile_coord
This commit is contained in:
Rémi Verschelde 2018-12-21 10:08:03 +01:00 committed by GitHub
commit 0b774d47e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1631,6 +1631,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);