Jump to content

Focus 3 eye tracking timestamp with Wave Unity SDK


Recommended Posts

Hi, 

Im using Focus 3's add-on eye tracker. I need the device timestamp. 

When I was using the Vive Eye Pro with SRanipal, there is a function to get deviceTimestamp(ms). Is there anything similar with the Wave SDK? I need the eye tracker's device timestamp.

Thanks a lot.

Link to comment
Share on other sites

I had to use the Wave Native Unity SDK, something like this got me the timestamp in nanosecconds. Wondering if this is available in Essence?

using Wave.Native;
//...//
 
WVR_EyeTracking_t eyeData = new WVR_EyeTracking_t();
WVR_CoordinateSystem space;
Interop.WVR_GetEyeTracking(ref eyeData, space = WVR_CoordinateSystem.WVR_CoordinateSystem_Local);
 
Long deviceTimestamp_ns = eyeData.timestamp;
 
Link to comment
Share on other sites

  • 3 months later...

Hello! So I have been trying for a while to obtain data with the eye tracker accessory (Focus 3) but I can't seem to get it to work inside Unity. Would it be possible to tell me how you were able to get it to work. Also, does it work through DirectPreview?

Thanks!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...