Skip to content

Commit 229bcde

Browse files
CRs
1 parent e11f905 commit 229bcde

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Assets/MixedRealityToolkit-SDK/Features/Teleportation/MixedRealityTeleportManager.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ public override void Unregister(GameObject listener)
113113

114114
#region IMixedRealityTeleportSystem Implementation
115115

116+
/// <inheritdoc />
116117
public float TeleportDuration
117118
{
118119
get { return teleportDuration; }

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Pointers/BaseControllerPointer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public float PointerExtent
274274

275275
[SerializeField]
276276
[Range(0f, 360f)]
277-
[Tooltip("The Y orientation of the pointer - used for touchpad rotation and navigation")]
277+
[Tooltip("The Y orientation of the pointer - used for rotation and navigation")]
278278
private float pointerOrientation = 0f;
279279

280280
/// <inheritdoc />

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Pointers/TeleportPointer.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ public override float PointerOrientation
8585
{
8686
get
8787
{
88-
if (
89-
TeleportHotSpot != null &&
88+
if (TeleportHotSpot != null &&
9089
TeleportHotSpot.OverrideTargetOrientation &&
9190
TeleportSurfaceResult == TeleportSurfaceResult.HotSpot)
9291
{

0 commit comments

Comments
 (0)