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 5720cb5 commit 21519eeCopy full SHA for 21519ee
Assets/HoloToolkit/Input/Scripts/BasicCursor.cs
@@ -28,7 +28,7 @@ public struct RaycastResult
28
29
private bool hasLoggedGazeManagerError;
30
31
- private GazeManager gaseManager;
+ private GazeManager gazeManager;
32
33
protected virtual void Awake()
34
{
@@ -49,9 +49,9 @@ protected virtual void Awake()
49
50
private bool GetGazeManagerReference()
51
52
- gaseManager = GazeManager.Instance;
+ gazeManager = GazeManager.Instance;
53
54
- if (gaseManager == null)
+ if (gazeManager == null)
55
56
return false;
57
}
@@ -90,7 +90,7 @@ protected virtual void LateUpdate()
90
return;
91
92
93
94
95
if (!GetGazeManagerReference())
96
0 commit comments