enum class ParticleTraceMissBehavior_t : uint32
{
    // MPropertyFriendlyName = Do Nothing
    PARTICLE_TRACE_MISS_BEHAVIOR_NONE = 0,
    // MPropertyFriendlyName = Kill Particle
    PARTICLE_TRACE_MISS_BEHAVIOR_KILL = 1,
    // MPropertyFriendlyName = Place Particle at Trace End
    PARTICLE_TRACE_MISS_BEHAVIOR_TRACE_END = 2,
};