Skip to content

Commit 55417b9

Browse files
Fixed typo
1 parent 0d5c0ff commit 55417b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/MixedRealityToolkit/_Core/EventDatum/Input/SourcePoseEventData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class SourcePoseEventData : SourceStateEventData
3939
/// <summary>
4040
/// The new position and rotation of the input source.
4141
/// </summary>
42-
public MixedRealityPose MixedRealityPosePose { get; private set; } = MixedRealityPose.ZeroIdentity;
42+
public MixedRealityPose MixedRealityPose { get; private set; } = MixedRealityPose.ZeroIdentity;
4343

4444
/// <inheritdoc />
4545
public SourcePoseEventData(EventSystem eventSystem) : base(eventSystem) { }
@@ -95,7 +95,7 @@ public void Initialize(IMixedRealityInputSource inputSource, IMixedRealityContro
9595
public void Initialize(IMixedRealityInputSource inputSource, IMixedRealityController controller, MixedRealityPose position)
9696
{
9797
Initialize(inputSource, controller);
98-
MixedRealityPosePose = position;
98+
MixedRealityPose = position;
9999
}
100100
}
101101
}

0 commit comments

Comments
 (0)