Library only orks when using CalibCamera first?

GazeCamera.OnGazeUpdate(GazeData gazeData) only gets called when I first load the calibscene.unity that came in the sample, and from there go to my own scene. If I skip calibscene.unity and directly go to my own scene, eyetracking does not work. It does not matter if whether I actually do calibration in the calibscene.unity or not, it also happens when I load that scene and directly press 'load next scene'.
I've had a look at the code in GazeCamera.cs and CalibCamera.cs and they appear identical. Both contain this:
Anyone got any clue what's going on? I wouldn't know where to start looking, because it seems like it shouldn't matter at all, especially because I can skip the calibration in calibscene.unity, the scene itself does nothing else.
I've had a look at the code in GazeCamera.cs and CalibCamera.cs and they appear identical. Both contain this:
- Code: Select all
//initialising GazeData stabilizer
gazeUtils = new GazeDataValidator(30);
//activate C# TET client, default port
GazeManager.Instance.Activate
(
GazeManager.ApiVersion.VERSION_1_0,
GazeManager.ClientMode.Push
);
//register for gaze updates
GazeManager.Instance.AddGazeListener(this);
Anyone got any clue what's going on? I wouldn't know where to start looking, because it seems like it shouldn't matter at all, especially because I can skip the calibration in calibscene.unity, the scene itself does nothing else.