Skip to content

Commit 916c007

Browse files
Let's filter out the touch pointer
1 parent 1c17f78 commit 916c007

File tree

1 file changed

+1
-1
lines changed
  • Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Cursors

1 file changed

+1
-1
lines changed

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Cursors/BaseCursor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ protected virtual void UpdateCursorTransform()
316316
{
317317
Debug.LogError($"{name}: Unable to get focus details for {pointer.GetType().Name}!");
318318
}
319-
else
319+
else if (pointer.GetType() != typeof(TouchPointer))
320320
{
321321
Debug.LogWarning($"{pointer.GetType().Name} not registered!");
322322
}

0 commit comments

Comments
 (0)