tilePropertiesListBelow method
Method that checks what properties list map tile is currently
Implementation
List<Map<String, dynamic>>? tilePropertiesListBelow() {
if (!hasGameRef) return null;
final map = gameRef.map;
if (map.layers.isNotEmpty) {
return tileListBelow()
.map<Map<String, dynamic>>((e) => e.properties!)
.toList();
}
return null;
}