@@ -772,7 +772,7 @@ public void RaiseFocusExit(IMixedRealityPointer pointer, GameObject unfocusedObj
772772 public void RaisePointerDown ( IMixedRealityPointer pointer , MixedRealityInputAction inputAction )
773773 {
774774 // Create input event
775- pointerEventData . Initialize ( pointer . InputSourceParent , inputAction ) ;
775+ pointerEventData . Initialize ( pointer , inputAction ) ;
776776
777777 ExecutePointerDown ( HandlePointerDown ( pointer ) ) ;
778778 }
@@ -781,7 +781,7 @@ public void RaisePointerDown(IMixedRealityPointer pointer, MixedRealityInputActi
781781 public void RaisePointerDown ( IMixedRealityPointer pointer , Handedness handedness , MixedRealityInputAction inputAction )
782782 {
783783 // Create input event
784- pointerEventData . Initialize ( pointer . InputSourceParent , handedness , inputAction ) ;
784+ pointerEventData . Initialize ( pointer , handedness , inputAction ) ;
785785
786786 ExecutePointerDown ( HandlePointerDown ( pointer ) ) ;
787787 }
@@ -855,7 +855,7 @@ private void HandleClick()
855855 public void RaisePointerUp ( IMixedRealityPointer pointer , MixedRealityInputAction inputAction )
856856 {
857857 // Create input event
858- pointerEventData . Initialize ( pointer . InputSourceParent , inputAction ) ;
858+ pointerEventData . Initialize ( pointer , inputAction ) ;
859859
860860 ExecutePointerUp ( HandlePointerUp ( pointer ) ) ;
861861 }
@@ -864,7 +864,7 @@ public void RaisePointerUp(IMixedRealityPointer pointer, MixedRealityInputAction
864864 public void RaisePointerUp ( IMixedRealityPointer pointer , Handedness handedness , MixedRealityInputAction inputAction )
865865 {
866866 // Create input event
867- pointerEventData . Initialize ( pointer . InputSourceParent , handedness , inputAction ) ;
867+ pointerEventData . Initialize ( pointer , handedness , inputAction ) ;
868868
869869 ExecutePointerUp ( HandlePointerUp ( pointer ) ) ;
870870 }
0 commit comments