mixedreality/com.microsoft.mixedreality..../Core/Definitions/Utilities/ProfileMenuItemIndices.cs

37 lines
963 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.Utilities
{
/// <summary>
/// Defines the display order of the Assets > Create > Mixed Reality Toolkit > Profiles menu items.
/// </summary>
public enum CreateProfileMenuItemIndices
{
Configuration = 0,
Camera,
Input,
Pointer,
ControllerMapping,
InputActions,
InputActionRules,
Speech,
BoundaryVisualization,
ControllerVisualization,
SpatialAwareness, // todo: remove
SpatialAwarenessMeshObserver,
SpatialAwarenessSurfaceObserver,
Gestures,
Diagnostics,
RegisteredServiceProviders,
InputSimulation,
HandTracking,
EyeTracking,
MouseInput,
SceneSystem,
SceneUnderstandingObserver,
Assembly = 99, // This should stay at the end
}
}