flame-engine / tiled.dart

A Dart Tiled library. Parse your TMX files into useful representations. Compatible with Flame.
https://flame-engine.org/
MIT License
50 stars 30 forks source link

Fixed crash on empty tile terrain entries #39

Closed natebot13 closed 2 years ago

natebot13 commented 2 years ago

Empty entries in a tile's terrain list are supported by Tiled. A tile with terrain crashes on trying to parse an empty string to an int. Swapping to tryParse and a nullable int list fixes the crash.