enum MAGES::DirectionType

Overview

An enum for providing a relative reference to a gameObject’s direction vectors. More…

enum DirectionType
{
    Up,
    Down,
    Left,
    Right,
    Forward,
    Backward,
};

Detailed Documentation

An enum for providing a relative reference to a gameObject’s direction vectors.

Enum Values

Up

The up direction (i.e Transform.up).

Down

The down direction (i.e Transform.down).

Left

The left direction (i.e Transform.left).

Right

The right direction (i.e Transform.right).

Forward

The forward direction (i.e Transform.forward).

Backward

The backward direction (i.e Transform.backward).