|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Experimental.Joystick
|
|
{
|
|
/// <summary>
|
|
/// Describes the current state of a joystick control.
|
|
/// </summary>
|
|
public enum JoystickMode
|
|
{
|
|
Move = 0,
|
|
Scale,
|
|
Rotate
|
|
}
|
|
} |