TileRenderMode
public enum TileRenderMode
extension TileRenderMode: CustomStringConvertible, CustomDebugStringConvertible
extension TileRenderMode: Equatable
Overview
The TileRenderMode flag determines how a particular tile instance is rendered. If the default is
specified, the tile renders however the parent tilemap tells it to. Only set this flag to override a
particular tile instance’s render behavior.
Properties
| Property | Description |
|---|---|
| default | Tile renders at default settings. |
| static | Tile ignores any animation data. |
| ignore | Tile does not take into account its tile data. |
| animated | Animate with a global id value. |
-
▶︎next()Returns the next tile render mode in the array.
Declaration
Swift
public func next() -> TileRenderModeReturn Value
next tile render mode.
-
Render mode string identifier.
Declaration
Swift
public var identifier: String { get } -
Declaration
Swift
public var description: String { get } -
Declaration
Swift
public var debugDescription: String { get }
View on GitHub
TileRenderMode Enumeration Reference