File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Assets/MixedRealityToolkit-SDK/Features/Input/Handlers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ void IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData even
135135 currentPointer = eventData . Pointer ;
136136
137137 FocusDetails focusDetails ;
138- Vector3 initialDraggingPosition = MixedRealityManager . InputSystem . FocusProvider . TryGetFocusDetails ( currentPointer , out focusDetails )
138+ Vector3 initialDraggingPosition = MixedRealityToolkit . InputSystem . FocusProvider . TryGetFocusDetails ( currentPointer , out focusDetails )
139139 ? focusDetails . Point
140140 : hostTransform . position ;
141141
@@ -201,7 +201,7 @@ private void StartDragging(Vector3 initialDraggingPosition)
201201 // TODO: robertes: Fix push/pop and single-handler model so that multiple HandDraggable components can be active at once.
202202
203203 // Add self as a modal input handler, to get all inputs during the manipulation
204- MixedRealityManager . InputSystem . PushModalInputHandler ( gameObject ) ;
204+ MixedRealityToolkit . InputSystem . PushModalInputHandler ( gameObject ) ;
205205
206206 isDragging = true ;
207207
@@ -327,7 +327,7 @@ private void StopDragging()
327327 }
328328
329329 // Remove self as a modal input handler
330- MixedRealityManager . InputSystem . PopModalInputHandler ( ) ;
330+ MixedRealityToolkit . InputSystem . PopModalInputHandler ( ) ;
331331
332332 isDragging = false ;
333333
You can’t perform that action at this time.
0 commit comments