enum MAGES::MeshDeformations::PhaseOptions

Overview

Particle Phase options. More…

enum PhaseOptions: uint
{
    None                 = 0,
    SelfCollisionEnabled = 1u<<31,
    CanCut               = 1u<<30,
    Mask                 = 0b11000000000000000000000000000000,
    LayerMask            = ~Mask,
};

Detailed Documentation

Particle Phase options.

Enum Values

None

None.

SelfCollisionEnabled

Self Collision Enabled.

CanCut

Whether this particle can be used for cutting other meshes.