From 9eb4bb044feb54fa5b45a3f29f111510df248128 Mon Sep 17 00:00:00 2001 From: Guilherme Felipe Date: Thu, 20 Dec 2018 15:43:44 -0200 Subject: Add bind for TileMap::get_cell_autotile_coord --- scene/2d/tile_map.cpp | 2 ++ 1 file changed, 2 insertions(+) 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); -- cgit v1.2.3