mixedreality/com.microsoft.mixedreality..../Core/Definitions/SpatialAwareness/SpatialMeshDisplayOptions.cs

26 lines
714 B
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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