Package apple.spritekit.enums
Class SKTileSetType
- java.lang.Object
-
- apple.spritekit.enums.SKTileSetType
-
public final class SKTileSetType extends java.lang.ObjectThe tile set type is used to describe how the tiles will be arranged in a tile map. [@enum] SKTileSetTypeGrid Specifies that the tiles will be axis-alligned rectangles that are placed in rows and columns at right angles to one another. This is the default type. [@enum] SKTileSetTypeIsometric Specifies that the tiles will be rectangles that are rotated and scaled to give the appearance of 3/4 perspective. [@enum] SKTileSetTypeHexagonalFlat Specifies that the tiles will be flat bottomed hexagons. [@enum] SKTileSetTypeHexagonalPointy Specifies that the tiles will be "pointy" bottomed hexagons.
-
-
Field Summary
Fields Modifier and Type Field Description static longGridstatic longHexagonalFlatstatic longHexagonalPointystatic longIsometric
-
-
-
Field Detail
-
Grid
public static final long Grid
- See Also:
- Constant Field Values
-
Isometric
public static final long Isometric
- See Also:
- Constant Field Values
-
HexagonalFlat
public static final long HexagonalFlat
- See Also:
- Constant Field Values
-
HexagonalPointy
public static final long HexagonalPointy
- See Also:
- Constant Field Values
-
-