mixedreality/com.microsoft.mixedreality..../SDK/Features/Input/Events/HandPanEventData.cs

19 lines
413 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.UI
{
/// <summary>
/// Information associated with a particular hand pan event.
/// </summary>
public class HandPanEventData
{
/// <summary>
/// Hand pan delta
/// </summary>
public Vector2 PanDelta { get; set; }
}
}