using System.ComponentModel; namespace UnityEngine.XR.ARSubsystems { /// /// Represents the preference for how to occlude. /// public enum OcclusionPreferenceMode { /// /// The preference is to occlude using environment depth. /// [Description("PreferEnvironmentOcclusion")] PreferEnvironmentOcclusion = 0, /// /// The preference is to occlude using human segmentation stencil and depth. /// [Description("PreferHumanOcclusion")] PreferHumanOcclusion = 1, } }