mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-31 13:29:18 +01:00
Fix arguments of the _use_tile_data_runtime_update() vmethod.
This commit is contained in:
parent
f54b3c8a45
commit
b376573e8a
@ -1044,7 +1044,7 @@ void LayeredTileMap::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_neighbor_cell", "coords", "neighbor"), &LayeredTileMap::get_neighbor_cell);
|
||||
|
||||
BIND_VMETHOD(MethodInfo("_use_tile_data_runtime_update",
|
||||
BIND_VMETHOD(MethodInfo(Variant::BOOL, "_use_tile_data_runtime_update",
|
||||
PropertyInfo(Variant::INT, "layer"),
|
||||
PropertyInfo(Variant::VECTOR2I, "coords")));
|
||||
|
||||
|
@ -1774,7 +1774,7 @@ void LayeredTileMapLayer::_notification(int p_what) {
|
||||
void LayeredTileMapLayer::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("set_cell", "coords", "source_id", "atlas_coords", "alternative_tile"), &LayeredTileMapLayer::set_cell, DEFVAL(LayeredTileSet::INVALID_SOURCE), DEFVAL(LayeredTileSetSource::INVALID_ATLAS_COORDS), DEFVAL(0));
|
||||
|
||||
BIND_VMETHOD(MethodInfo("_use_tile_data_runtime_update",
|
||||
BIND_VMETHOD(MethodInfo(Variant::BOOL, "_use_tile_data_runtime_update",
|
||||
PropertyInfo(Variant::VECTOR2I, "coords")));
|
||||
|
||||
BIND_VMETHOD(MethodInfo("_tile_data_runtime_update",
|
||||
|
Loading…
Reference in New Issue
Block a user