From 6a27ed0c6721a5e9d71eb4a4c8e2ea784f9c9a8d Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sun, 17 May 2020 13:12:21 -0400 Subject: [PATCH] Updated handedness to properly work with the enum flags attribute (#587) --- Runtime/Definitions/Utilities/Handedness.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Definitions/Utilities/Handedness.cs b/Runtime/Definitions/Utilities/Handedness.cs index 4100d9097..3e779a36b 100644 --- a/Runtime/Definitions/Utilities/Handedness.cs +++ b/Runtime/Definitions/Utilities/Handedness.cs @@ -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. /// [Flags] - public enum Handedness : byte + public enum Handedness { /// /// No hand specified by the SDK for the controller /// - None = 0 << 0, + None = 0, /// /// The controller is identified as being provided in a Left hand ///