// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.SpatialAwareness { /// /// Options for how the spatial mesh is to be displayed by the spatial awareness system. /// public enum SpatialAwarenessMeshDisplayOptions { /// /// Do not display the spatial mesh /// None = 0, /// /// Display the spatial mesh using the configured material /// Visible, /// /// Display the spatial mesh using the configured occlusion material /// Occlusion } }