Tagged

final case class Tagged(tag: AssetTag, images: List[Image]) extends AssetType

Tagged instance, the preferred constructor is the apply method: Tagged("my tag")(image1..imageN)

Tagged instance, the preferred constructor is the apply method: Tagged("my tag")(image1..imageN)

Images can optionally be "tagged", this tells indigo that images with the same tag should be grouped together for more efficient use. E.g. you might tag all the images for a given level with the same tag.

Value Params
images

The image assets to be tagged

tag

The AssetTag to apply to all the images

Companion
object
trait Serializable
trait Product
trait Equals
trait AssetType
class Object
trait Matchable
class Any

Value members

Concrete methods

def toList: List[Image]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product