We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6d420 commit d6583e2Copy full SHA for d6583e2
Assets/HoloToolkit/Input/Scripts/GestureManager.cs
@@ -102,6 +102,15 @@ public bool InteractionSourceDetected
102
get { return trackedInteractionSource.Count > 0; }
103
}
104
105
+ /// <summary>
106
+ /// InteractionSourcePressed track the interaction pressed state.
107
+ /// Returns true if the list of pressed interactions is not empty.
108
+ /// </summary>
109
+ public bool InteractionSourcePressed
110
+ {
111
+ get { return pressedInteractionSource.Count > 0; }
112
+ }
113
+
114
#endregion
115
116
#if UNITY_EDITOR || UNITY_STANDALONE
0 commit comments