コード例 #1
0
ファイル: CopyMover.cs プロジェクト: rwth-acis/VIAProMa
 /// <summary>
 /// Called if the user ends a gesture on the object
 /// Redirects the event to the copy
 /// </summary>
 /// <param name="eventData">The event data of the gesture</param>
 public void OnPointerUp(MixedRealityPointerEventData eventData)
 {
     // check if the copy was created and the handler was fetched
     // if yes, the instantiation went to plan
     if (handlerOnCopy != null)
     {
         handlerOnCopy.OnPointerUp(eventData);
     }
 }
コード例 #2
0
 public void OnPointerUp(MixedRealityPointerEventData eventData)
 {
     redirectTarget.OnPointerUp(eventData);
 }
コード例 #3
0
 public void OnPointerUp(MixedRealityPointerEventData eventData)
 {
     handler.OnPointerUp(eventData);
     boxStateController.BoundingBoxActive = false;
 }