I have a level editing platformer game that I am making, which uses primarily phaser tilemaps for the level design. I load the level from an array, and I allow the player to edit the tilemap via map.putTileAt(type, x, y); This works well generally speaking, however when an animated sprite starts moving on the tilemap, it will sometimes get caught on the ground as if there was a wall in front of it. Any level data that I preload in the array never has this issue with the sprites. I assume that since I am adding each tile individually they each have a full collider with all four sides, compared to when the level is loaded and they don't have to use colliders in between the tiles. I am having a difficult time determining if this is my fault in the code, or if there is a way to refresh the colliders of the tilemap itself. Any help would be appreciated.