// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit { /// /// Mixed reality platform capabilities. /// public enum MixedRealityCapability { /// /// Articulated hand input /// ArticulatedHand = 0, /// /// Gaze-Gesture-Voice hand input /// GGVHand, /// /// Motion controller input /// MotionController, /// /// Eye gaze targeting /// EyeTracking, /// /// Voice commands using app defined keywords /// VoiceCommand, /// /// Voice to text dictation /// VoiceDictation, /// /// Spatial meshes /// SpatialAwarenessMesh, /// /// Spatial planes /// SpatialAwarenessPlane, /// /// Spatial points /// SpatialAwarenessPoint } }