Skip to content

Commit 84d99c7

Browse files
committed
Docs updates
1 parent e83b274 commit 84d99c7

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Assets/MixedRealityToolkit.Providers/WindowsMixedReality/BaseWindowsMixedRealitySource.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public override void SetupDefaultInteractions(Handedness controllerHandedness)
6565
/// <summary>
6666
/// Update the source data from the provided platform state.
6767
/// </summary>
68-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
68+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
6969
public virtual void UpdateController(InteractionSourceState interactionSourceState)
7070
{
7171
if (!Enabled) { return; }
@@ -105,7 +105,7 @@ public virtual void UpdateController(InteractionSourceState interactionSourceSta
105105
/// <summary>
106106
/// Update the source input from the device.
107107
/// </summary>
108-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
108+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
109109
private void UpdateSourceData(InteractionSourceState interactionSourceState)
110110
{
111111
var lastState = TrackingState;
@@ -167,9 +167,9 @@ private void UpdateSourceData(InteractionSourceState interactionSourceState)
167167
}
168168

169169
/// <summary>
170-
/// Update the "Spatial Pointer" input from the device
170+
/// Update the spatial pointer input from the device.
171171
/// </summary>
172-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
172+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
173173
/// <param name="interactionMapping"></param>
174174
private void UpdatePointerData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
175175
{
@@ -196,9 +196,9 @@ private void UpdatePointerData(InteractionSourceState interactionSourceState, Mi
196196
}
197197

198198
/// <summary>
199-
/// Update the "Spatial Grip" input from the device
199+
/// Update the spatial grip input from the device.
200200
/// </summary>
201-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
201+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
202202
/// <param name="interactionMapping"></param>
203203
private void UpdateGripData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
204204
{
@@ -227,9 +227,9 @@ private void UpdateGripData(InteractionSourceState interactionSourceState, Mixed
227227
}
228228

229229
/// <summary>
230-
/// Update the Trigger input from the device
230+
/// Update the trigger and grasped input from the device.
231231
/// </summary>
232-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
232+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
233233
/// <param name="interactionMapping"></param>
234234
private void UpdateTriggerData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
235235
{

Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityController.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public override void UpdateController(InteractionSourceState interactionSourceSt
105105
/// <summary>
106106
/// Update the touchpad input from the device.
107107
/// </summary>
108-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
108+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
109109
/// <param name="interactionMapping"></param>
110110
private void UpdateTouchpadData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
111111
{
@@ -170,7 +170,7 @@ private void UpdateTouchpadData(InteractionSourceState interactionSourceState, M
170170
/// <summary>
171171
/// Update the thumbstick input from the device.
172172
/// </summary>
173-
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform</param>
173+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
174174
/// <param name="interactionMapping"></param>
175175
private void UpdateThumbstickData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
176176
{
@@ -215,7 +215,7 @@ private void UpdateThumbstickData(InteractionSourceState interactionSourceState,
215215
/// <summary>
216216
/// Update the menu button state.
217217
/// </summary>
218-
/// <param name="interactionSourceState"></param>
218+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
219219
/// <param name="interactionMapping"></param>
220220
private void UpdateMenuData(InteractionSourceState interactionSourceState, MixedRealityInteractionMapping interactionMapping)
221221
{
@@ -242,9 +242,9 @@ private void UpdateMenuData(InteractionSourceState interactionSourceState, Mixed
242242
#region Controller model functions
243243

244244
/// <summary>
245-
/// Ensure that if a controller model was desired that we have attempted initialization
245+
/// Ensure that if a controller model was desired that we have attempted initialization.
246246
/// </summary>
247-
/// <param name="interactionSourceState"></param>
247+
/// <param name="interactionSourceState">The InteractionSourceState retrieved from the platform.</param>
248248
private void EnsureControllerModel(InteractionSourceState interactionSourceState)
249249
{
250250
if (controllerModelInitialized ||

0 commit comments

Comments
 (0)