enum MAGES::InteractionSystemModule::InteractorCollisionMode

Overview

Defines whether the interactors will collide or not. More…

enum InteractorCollisionMode
{
    Nothing                 = 0,
    HandInteractors         = 1<<0,
    HandTrackingInteractors = 1<<1,
    ToolInteractors         = 1<<2,
    Everything              = ~0,
};

Detailed Documentation

Defines whether the interactors will collide or not.

Enum Values

Nothing

No Interactors will have collisions enabled.

HandInteractors

HandInteractors will have collisions enabled.

HandTrackingInteractors

HandTrackingInteractors will have collisions enabled.

ToolInteractors

ToolInteractors will have collisions enabled.

Everything

All Intearctors will have collisions enabled.