enum MAGES::UpdatePhase

Overview

Used in InteractionManager to determine when the Process methods are called. More…

enum UpdatePhase
{
    Update,
    LateUpdate,
    FixedUpdate,
    OnPreRender,
    OnPostRender,
};

Detailed Documentation

Used in InteractionManager to determine when the Process methods are called.

Enum Values

Update

In Unity’s Update.

LateUpdate

In Unity’s LateUpdate.

FixedUpdate

In Unity’s FixedUpdate.

OnPreRender

Just before rendering.

OnPostRender

Just after rendering.