Skip to content

Commit 8e28a31

Browse files
committed
Update obsolete message for IHandedInteractor
1 parent c239fa4 commit 8e28a31

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

org.mixedrealitytoolkit.core/Interactors/IHandedInteractor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ namespace MixedReality.Toolkit
99
/// <summary>
1010
/// An interface that all interactors with the concept of handedness implement.
1111
/// </summary>
12-
[Obsolete("Use handedness from IXRInteractor instead.")]
12+
[Obsolete("Use " + nameof(IXRInteractor) + " instead.")]
1313
public interface IHandedInteractor : IXRInteractor
1414
{
1515
/// <summary>
1616
/// Returns the Handedness of this interactor.
1717
/// </summary>
18-
[Obsolete("Use handedness from IXRInteractor instead.")]
18+
[Obsolete("Use " + nameof(handedness) + " instead.")]
1919
public Handedness Handedness { get; }
2020
}
2121
}

org.mixedrealitytoolkit.input/Interactors/GazePinch/GazePinchInteractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ private bool IsTracked
196196
#region IHandedInteractor
197197

198198
/// <inheritdoc />
199-
[Obsolete("Use handedness from IXRInteractor instead.")]
199+
[Obsolete("Use " + nameof(handedness) + " instead.")]
200200
Handedness IHandedInteractor.Handedness
201201
{
202202
get

org.mixedrealitytoolkit.input/Interactors/HandJointInteractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public GameObject ModeManagedRoot
6161
#region IHandedInteractor
6262

6363
/// <inheritdoc />
64-
[Obsolete("Use handedness from IXRInteractor instead.")]
64+
[Obsolete("Use " + nameof(handedness) + " instead.")]
6565
Handedness IHandedInteractor.Handedness
6666
{
6767
get

org.mixedrealitytoolkit.input/Interactors/Poke/PokeInteractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ xrController is ArticulatedHandController handController &&
106106
#region IHandedInteractor
107107

108108
/// <inheritdoc />
109-
[Obsolete("Use handedness from IXRInteractor instead.")]
109+
[Obsolete("Use " + nameof(handedness) + " instead.")]
110110
Handedness IHandedInteractor.Handedness
111111
{
112112
get

0 commit comments

Comments
 (0)