Example #1
0
 private void GestureRecognizer_TappedEvent(InteractionSourceKind source, int tapCount, Ray headRay)
 {
     // Checking if the current focused object is not null
     if (focusedObject != null)
     {
         // Send message if planemanagar doesn't handle the focused object
         if (!planeManager.UpdateSelectedPlane(focusedObject))
         {
             focusedObject.SendMessage("OnSelect");
         }
     }
 }