@@ -193,7 +193,7 @@ private void InitializeEventDatas()
193
193
#endif
194
194
}
195
195
196
- #region Unity Methods
196
+ #region Unity Methods
197
197
198
198
private void Start ( )
199
199
{
@@ -222,7 +222,7 @@ protected override void OnDestroy()
222
222
UnregisterGazeManager ( ) ;
223
223
}
224
224
225
- #endregion // Unity Methods
225
+ #endregion // Unity Methods
226
226
227
227
public void HandleEvent < T > ( BaseEventData eventData , ExecuteEvents . EventFunction < T > eventHandler )
228
228
where T : IEventSystemHandler
@@ -455,7 +455,7 @@ public void RaiseSourceLost(IInputSource source, uint sourceId)
455
455
HandleEvent ( sourceStateEventData , OnSourceLostEventHandler ) ;
456
456
}
457
457
458
- #region Manipulation Events
458
+ #region Manipulation Events
459
459
460
460
private static readonly ExecuteEvents . EventFunction < IManipulationHandler > OnManipulationStartedEventHandler =
461
461
delegate ( IManipulationHandler handler , BaseEventData eventData )
@@ -521,9 +521,9 @@ public void RaiseManipulationCanceled(IInputSource source, uint sourceId, Vector
521
521
HandleEvent ( manipulationEventData , OnManipulationCanceledEventHandler ) ;
522
522
}
523
523
524
- #endregion // Manipulation Events
524
+ #endregion // Manipulation Events
525
525
526
- #region Hold Events
526
+ #region Hold Events
527
527
528
528
private static readonly ExecuteEvents . EventFunction < IHoldHandler > OnHoldStartedEventHandler =
529
529
delegate ( IHoldHandler handler , BaseEventData eventData )
@@ -573,9 +573,9 @@ public void RaiseHoldCanceled(IInputSource source, uint sourceId)
573
573
HandleEvent ( holdEventData , OnHoldCanceledEventHandler ) ;
574
574
}
575
575
576
- #endregion // Hold Events
576
+ #endregion // Hold Events
577
577
578
- #region Navigation Events
578
+ #region Navigation Events
579
579
580
580
private static readonly ExecuteEvents . EventFunction < INavigationHandler > OnNavigationStartedEventHandler =
581
581
delegate ( INavigationHandler handler , BaseEventData eventData )
@@ -641,10 +641,10 @@ public void RaiseNavigationCanceled(IInputSource source, uint sourceId, Vector3
641
641
HandleEvent ( navigationEventData , OnNavigationCanceledEventHandler ) ;
642
642
}
643
643
644
- #endregion // Navigation Events
644
+ #endregion // Navigation Events
645
645
646
646
#if UNITY_WSA || UNITY_STANDALONE_WIN
647
- #region Speech Events
647
+ #region Speech Events
648
648
649
649
private static readonly ExecuteEvents . EventFunction < ISpeechHandler > OnSpeechKeywordRecognizedEventHandler =
650
650
delegate ( ISpeechHandler handler , BaseEventData eventData )
@@ -669,9 +669,9 @@ public void RaiseSpeechKeywordPhraseRecognized(IInputSource source, uint sourceI
669
669
handler . OnDictationHypothesis ( casted ) ;
670
670
} ;
671
671
672
- #endregion // Speech Events
672
+ #endregion // Speech Events
673
673
674
- #region Dictation Events
674
+ #region Dictation Events
675
675
676
676
public void RaiseDictationHypothesis ( IInputSource source , uint sourceId , string dictationHypothesis , AudioClip dictationAudioClip = null )
677
677
{
@@ -730,7 +730,7 @@ public void RaiseDictationError(IInputSource source, uint sourceId, string dicta
730
730
HandleEvent ( dictationEventData , OnDictationErrorEventHandler ) ;
731
731
}
732
732
733
- #endregion // Dictation Events
733
+ #endregion // Dictation Events
734
734
#endif
735
735
}
736
736
}
0 commit comments