Direction
Enumeration that represents the different directions.
Values
Up [0] | Value indicating up |
Down [1] | Value indicating down |
Left [2] | Value indicating left |
Right [3] | Value indicating right |
Examples
local upDir = Direction.Up;
local leftDir = Direction.Left;
local rightDir = Direction.Right;