houb3 Posted May 12, 2023 Share Posted May 12, 2023 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, 2023 Author Share Posted May 12, 2023 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...
Munzer Abusham Posted August 28, 2023 Share Posted August 28, 2023 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 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