Skip to content
This repository was archived by the owner on Aug 11, 2024. It is now read-only.

Commit 769076a

Browse files
Added braces to conform to coding guidelines
added missing access modifier to conform to coding guidelines
1 parent d1bc866 commit 769076a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Runtime/Features/UX/Scripts/Controllers/Hands/DefaultHandControllerVisualizer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class DefaultHandControllerVisualizer : ControllerPoseSynchronizer, IMixe
2424
private BoxCollider handBoundsModeCollider;
2525
private const float fingerColliderRadius = .007f;
2626
private const int capsuleColliderZAxis = 2;
27-
HandControllerJointsVisualizer jointsVisualizer;
27+
private HandControllerJointsVisualizer jointsVisualizer;
2828
private HandControllerMeshVisualizer meshVisualizer;
2929

3030
[SerializeField]
@@ -427,4 +427,4 @@ private void UpdateRendering()
427427
}
428428
}
429429
}
430-
}
430+
}

Runtime/Features/UX/Scripts/Tooltips/ToolTip.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,9 @@ private void OnDrawGizmos()
445445
{
446446

447447
if (Application.isPlaying)
448+
{
448449
return;
450+
}
449451

450452
if (!EnforceHierarchy())
451453
{

0 commit comments

Comments
 (0)