Hi!
I created a Tilemap with Tiled JSON format. I created a animation with Tiled. JSON code:
"tiles": [
{ "animation": [
{ "duration": 200, "tileid": 80 },
{ "duration": 200, "tileid": 81 }
],
"id": 80
}],
I want animate this tile with Phaser.
- Can I animate this tile with official Phaser (without plugin)? It’s supported?
- Only I found this plugin ( https://github.com/nkholski/phaser-animated-tiles ). It’s compatible with Phaser3.24.1?