We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aacd31 commit 00dbd13Copy full SHA for 00dbd13
packages/tiled/lib/src/layer.dart
@@ -146,7 +146,7 @@ abstract class Layer {
146
final width = parser.getInt('width');
147
final height = parser.getInt('height');
148
final dataNode = parser.formatSpecificParsing(
149
- (json) => null, // data is just a string or list of int on JSON
+ (json) => json, // data is just a string or list of int on JSON
150
(xml) => xml.getSingleChildOrNull('data'),
151
);
152
final compression = parser.getCompressionOrNull('compression') ??
0 commit comments