Skip to content

Commit e5a9862

Browse files
Fixed formatting.
1 parent 083ba1e commit e5a9862

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Assets/HoloToolkit/Input/Scripts/InputManager.cs

+12-12
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private void InitializeEventDatas()
193193
#endif
194194
}
195195

196-
#region Unity Methods
196+
#region Unity Methods
197197

198198
private void Start()
199199
{
@@ -222,7 +222,7 @@ protected override void OnDestroy()
222222
UnregisterGazeManager();
223223
}
224224

225-
#endregion // Unity Methods
225+
#endregion // Unity Methods
226226

227227
public void HandleEvent<T>(BaseEventData eventData, ExecuteEvents.EventFunction<T> eventHandler)
228228
where T : IEventSystemHandler
@@ -455,7 +455,7 @@ public void RaiseSourceLost(IInputSource source, uint sourceId)
455455
HandleEvent(sourceStateEventData, OnSourceLostEventHandler);
456456
}
457457

458-
#region Manipulation Events
458+
#region Manipulation Events
459459

460460
private static readonly ExecuteEvents.EventFunction<IManipulationHandler> OnManipulationStartedEventHandler =
461461
delegate (IManipulationHandler handler, BaseEventData eventData)
@@ -521,9 +521,9 @@ public void RaiseManipulationCanceled(IInputSource source, uint sourceId, Vector
521521
HandleEvent(manipulationEventData, OnManipulationCanceledEventHandler);
522522
}
523523

524-
#endregion // Manipulation Events
524+
#endregion // Manipulation Events
525525

526-
#region Hold Events
526+
#region Hold Events
527527

528528
private static readonly ExecuteEvents.EventFunction<IHoldHandler> OnHoldStartedEventHandler =
529529
delegate (IHoldHandler handler, BaseEventData eventData)
@@ -573,9 +573,9 @@ public void RaiseHoldCanceled(IInputSource source, uint sourceId)
573573
HandleEvent(holdEventData, OnHoldCanceledEventHandler);
574574
}
575575

576-
#endregion // Hold Events
576+
#endregion // Hold Events
577577

578-
#region Navigation Events
578+
#region Navigation Events
579579

580580
private static readonly ExecuteEvents.EventFunction<INavigationHandler> OnNavigationStartedEventHandler =
581581
delegate (INavigationHandler handler, BaseEventData eventData)
@@ -641,10 +641,10 @@ public void RaiseNavigationCanceled(IInputSource source, uint sourceId, Vector3
641641
HandleEvent(navigationEventData, OnNavigationCanceledEventHandler);
642642
}
643643

644-
#endregion // Navigation Events
644+
#endregion // Navigation Events
645645

646646
#if UNITY_WSA || UNITY_STANDALONE_WIN
647-
#region Speech Events
647+
#region Speech Events
648648

649649
private static readonly ExecuteEvents.EventFunction<ISpeechHandler> OnSpeechKeywordRecognizedEventHandler =
650650
delegate (ISpeechHandler handler, BaseEventData eventData)
@@ -669,9 +669,9 @@ public void RaiseSpeechKeywordPhraseRecognized(IInputSource source, uint sourceI
669669
handler.OnDictationHypothesis(casted);
670670
};
671671

672-
#endregion // Speech Events
672+
#endregion // Speech Events
673673

674-
#region Dictation Events
674+
#region Dictation Events
675675

676676
public void RaiseDictationHypothesis(IInputSource source, uint sourceId, string dictationHypothesis, AudioClip dictationAudioClip = null)
677677
{
@@ -730,7 +730,7 @@ public void RaiseDictationError(IInputSource source, uint sourceId, string dicta
730730
HandleEvent(dictationEventData, OnDictationErrorEventHandler);
731731
}
732732

733-
#endregion // Dictation Events
733+
#endregion // Dictation Events
734734
#endif
735735
}
736736
}

0 commit comments

Comments
 (0)