Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
Updated handedness to properly work with the enum flags attribute (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson authored May 17, 2020
1 parent 12b3edc commit 6a27ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Definitions/Utilities/Handedness.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ namespace XRTK.Definitions.Utilities
/// "Other" defines potential controllers that will offer a "third" hand, e.g. a full body tracking suit.
/// </summary>
[Flags]
public enum Handedness : byte
public enum Handedness
{
/// <summary>
/// No hand specified by the SDK for the controller
/// </summary>
None = 0 << 0,
None = 0,
/// <summary>
/// The controller is identified as being provided in a Left hand
/// </summary>
Expand Down

0 comments on commit 6a27ed0

Please sign in to comment.