Add ultimate xr
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="SteamVRActionsExporter.ButtonUsageFlags.cs" company="VRMADA">
|
||||
// Copyright (c) VRMADA, All rights reserved.
|
||||
// </copyright>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
using System;
|
||||
|
||||
namespace UltimateXR.Editor.Sdks.InputTracking
|
||||
{
|
||||
public static partial class SteamVRActionsExporter
|
||||
{
|
||||
#region Private Types & Data
|
||||
|
||||
/// <summary>
|
||||
/// Enumerates the possible button interaction types.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
private enum ButtonUsageFlags
|
||||
{
|
||||
None = 0,
|
||||
Click = 1,
|
||||
Touch = 1 << 1,
|
||||
All = 0x7FFFFFFF
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user