Files
dungeons/Assets/UltimateXR/Editor/Sdks/InputTracking/SteamVRActionsExporter.SideFlags.cs
2024-08-06 21:58:35 +02:00

28 lines
888 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SteamVRActionsExporter.SideFlags.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 different sides supported by controller elements.
/// </summary>
[Flags]
private enum SideFlags
{
None = 0,
Left = 1,
Right = 1 << 1,
BothSides = Left | Right
}
#endregion
}
}