mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-22 07:27:58 +01:00
Fix typo.
This commit is contained in:
parent
9116814193
commit
5356c1a7ea
@ -504,7 +504,7 @@ int LayeredTileSet::add_source(Ref<LayeredTileSetSource> p_tile_set_source, int
|
|||||||
void LayeredTileSet::remove_source(int p_source_id) {
|
void LayeredTileSet::remove_source(int p_source_id) {
|
||||||
ERR_FAIL_COND_MSG(!sources.has(p_source_id), vformat("Cannot remove LayeredTileSet atlas source. No tileset atlas source with id %d.", p_source_id));
|
ERR_FAIL_COND_MSG(!sources.has(p_source_id), vformat("Cannot remove LayeredTileSet atlas source. No tileset atlas source with id %d.", p_source_id));
|
||||||
|
|
||||||
sources[p_source_id]->connect(CoreStringNames::get_singleton()->changed, this, "_source_changed");
|
sources[p_source_id]->disconnect(CoreStringNames::get_singleton()->changed, this, "_source_changed");
|
||||||
|
|
||||||
sources[p_source_id]->set_tile_set(nullptr);
|
sources[p_source_id]->set_tile_set(nullptr);
|
||||||
sources.erase(p_source_id);
|
sources.erase(p_source_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user