Jump to content

Focus 3 eye tracking timestamp with Wave Unity SDK


houb3

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...

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...