I use assetmanager to load tmx, Some collectable object such as coin, need to be removed when hero touch it. So I destroy like this
object.setCell(x, y, null);
But when I restart the level game, those collectable coin doesn't appear because the cell was null. How can I reset those null cell object? Please help me