Newer
Older
HoloAnatomy / Assets / HoloToolkit / Input / Scripts / InputSources / InteractionSourcePressInfo.cs
SURFACEBOOK2\jackwynne on 25 May 2018 377 bytes v1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace HoloToolkit.Unity.InputModule
{
    public enum InteractionSourcePressInfo
    {
        None = 0,
        Select = 1,
        Menu = 2,
        Grasp = 3,
        Touchpad = 4,
        Thumbstick = 5,
    }
}