-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Service registration (#3545) part 3 - systems load data providers #3738
Service registration (#3545) part 3 - systems load data providers #3738
Conversation
Assets/MixedRealityToolkit.Providers/WindowsVoiceInput/WindowsDictationInputProvider.cs
Show resolved
Hide resolved
Assets/MixedRealityToolkit/Interfaces/Services/IMixedRealityDataProvider.cs
Outdated
Show resolved
Hide resolved
Assets/MixedRealityToolkit/Definitions/SpatialAwareness/BaseSpatialAwarenessObserverProfile.cs
Outdated
Show resolved
Hide resolved
/// <param name="componentName"></param> | ||
/// <param name="priority"></param> | ||
/// <param name="runtimePlatform"></param> | ||
/// <param name="profile"></param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Maybe delete or or fill out some basic summary.
@@ -607,7 +625,8 @@ private void GestureRecognizer_HoldCompleted(HoldCompletedEventArgs args) | |||
var controller = GetController(args.source, false); | |||
if (controller != null) | |||
{ | |||
MixedRealityToolkit.InputSystem.RaiseGestureCompleted(controller, holdAction); | |||
IMixedRealityInputSystem inputSystem = Service as IMixedRealityInputSystem; | |||
inputSystem.RaiseGestureCompleted(controller, holdAction); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inputSystem [](start = 16, length = 11)
Unrelated to this change, but do you know why there's only a ? check on the first function (i.e. GestureRecognizer_HoldStarted but none here or below - i.e. I would assume that GestureRecognizer_ManipulationStarted would need something similar if the issue is only on starts)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good question. i'll be sure to do a thorough scrub in the near future to ensure we are doing the right thing
Assets/MixedRealityToolkit.Providers/WindowsVoiceInput/WindowsSpeechInputProvider.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another rubber stamped PR without review from the community? You guys aren't giving us enough time to review these. |
This is a change we had baking for a while which was dependent on the mrtk_development_hl2 code which only moved up last week. We are driving for transparency by doing as much work as we can in GitHub directly. This is one that didn't make the initial train that populated _hl2. |
This PR is a continuation of the work on #3545.
Changes include: