TiledItemTileSet constructor

TiledItemTileSet({
  1. TileSprite? sprite,
  2. List<ShapeHitbox>? collisions,
  3. TilelAnimation? animation,
  4. String? type,
  5. String? tileClass,
  6. Map<String, dynamic>? properties,
  7. double angle = 0,
  8. bool isFlipVertical = false,
  9. bool isFlipHorizontal = false,
})

Implementation

TiledItemTileSet({
  this.sprite,
  this.collisions,
  this.animation,
  this.type,
  this.tileClass,
  this.properties,
  this.angle = 0,
  this.isFlipVertical = false,
  this.isFlipHorizontal = false,
});