houb3 Posted May 12 Share Posted May 12 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 More sharing options...
houb3 Posted May 12 Author Share Posted May 12 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now