protected override void Stop()
 {
     base.Stop();
     if (iface != null)
     {
         iface.Dispose();
         iface = null;
     }
 }
Ejemplo n.º 2
0
 protected override void Stop()
 {
     base.Stop();
     if (iface != null)
     {
         iface.Dispose();
         iface = null;
     }
 }
 override protected void Start()
 {
     base.Start();
     if (iface == null && !String.IsNullOrEmpty(usedPath))
     {
         iface = OSVR.ClientKit.EyeTrackerBlinkInterface.GetInterface(
             ClientKit.instance.context, usedPath);
     }
 }
Ejemplo n.º 4
0
 protected override void Start()
 {
     base.Start();
     if (iface == null && !String.IsNullOrEmpty(usedPath))
     {
         iface = OSVR.ClientKit.EyeTrackerBlinkInterface.GetInterface(
             ClientKit.instance.context, usedPath);
     }
 }