Exemplo n.º 1
0
 void onDistortionChange(object sender, LeapEventArgs args)
 {
     //Distortion changes every time an image from a different device comes in,
     //so suppress this when using multiple devices
     if (_eyeTextureData.TextureData.Count == 1)
     {
         _eyeTextureData.MarkStale();
     }
 }
Exemplo n.º 2
0
        protected void onHandControllerConnect(object sender, LeapEventArgs args)
        {
            initializeFlags();

            if (_leapController != null)
            {
                _leapController.Device -= onHandControllerConnect;
            }
        }
Exemplo n.º 3
0
        protected void onHandControllerConnect(object sender, LeapEventArgs args)
        {
            initializeFlags();

#if SVR
            InitClockRebaser();
#endif

            if (_leapController != null)
            {
                _leapController.Device -= onHandControllerConnect;
            }
        }
Exemplo n.º 4
0
 void onDistortionChange(object sender, LeapEventArgs args)
 {
     _eyeTextureData.MarkStale();
 }
 protected void onHandControllerConnect(object sender, LeapEventArgs args)
 {
     initializeFlags();
     leap_controller_.Device -= onHandControllerConnect;
 }
Exemplo n.º 6
0
 void onDistortionChange(object sender, LeapEventArgs args) {
   _eyeTextureData.MarkStale();
 }
Exemplo n.º 7
0
 protected void onHandControllerConnect(object sender, LeapEventArgs args)
 {
     leap_controller_.Device -= onHandControllerConnect;
 }
Exemplo n.º 8
0
 protected void onHandControllerConnect(object sender, LeapEventArgs args) {
   initializeFlags();
   leap_controller_.Device -= onHandControllerConnect;
 }
Exemplo n.º 9
0
 private static void onHandControllerConnect(object sender, LeapEventArgs args)
 {
     InitializeFlags();
     leap_controller_.Device -= onHandControllerConnect;
 }