 | DirectionType Enumeration |
Orientations on the tile grid.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax[FlagsAttribute]
public enum DirectionType
<FlagsAttribute>
Public Enumeration DirectionType
[FlagsAttribute]
public enum class DirectionType
[<FlagsAttribute>]
type DirectionType
Members
| Member name | Value | Description |
---|
| None | 0 |
None (No Direction).
|
| North | 1 |
North (Up).
|
| East | 2 |
East (Right).
|
| South | 4 |
Down.
|
| West | 8 |
West (Left).
|
| All | 15 |
All (Up,Down,Left and Right).
|
| NorthEast | 3 |
NorthEast (Up, Right).
|
| SouthEast | 6 |
SouthEast (Down,Right).
|
| SouthWest | 12 |
SouthWest (Left,Down).
|
| NorthWest | 9 |
NorthWest (Up,Left).
|
| Horizontal | 10 |
West and east.
|
| Vertical | 5 |
North and south.
|
See Also