tileData property

List<List<Gid>>? tileData
getter/setter pair

This is not part of the tiled definitions; this is just a convinient wrapper over the data field that simplifies two things:

  • represents the matrix as a matrix (List<List
  • wraps the gid integer into the Gid class for easy access of properties

Implementation

List<List<Gid>>? tileData;