Enum Tile.Category
A set of enumeration flags used by Tile to determine a set of settings for it.
[Flags]
public enum Tile.Category
- Extension Methods
Fields
Natural = 1
A natural tile category, which refers to tiles that can hold plants, trees, etc. Tiles with this category allow Furniture with the NaturalGroundRequired category to be placed on them.
None = 0
No special categories.
Road = 8
A tile category for roads, which are tiles that automatically generate a road if placed with a width of five tiles. Roads can be queried using GetRoads().
Sand = 16
A sand tile category, which refers to tiles that are sandy. Tiles with this category allow Furniture with the SandRequired category to be placed on them.
ValidExitPoint = 4
A tile category for tiles that should create an exit point if placed at the border of a map. Tiles of this category can be queried using GetExitPoints().
Water = 2
A water tile category, which refers to tiles that are considered to be water.