Skip to content

Commit c0b3418

Browse files
committed
Fixed formatting
1 parent e4ad3d7 commit c0b3418

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Packages/com.unity.inputsystem/InputSystem/Plugins/XR/TrackedPoseDriver.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using UnityEngine.InputSystem.LowLevel;
3+
using UnityEngine.UIElements;
34

45
namespace UnityEngine.InputSystem.XR
56
{
@@ -503,11 +504,11 @@ void ReadTrackingState()
503504
var positionInputAction = m_PositionInput.action;
504505
var hasPositionInputActionWithBindings =
505506
positionInputAction != null && positionInputAction.m_BindingsCount > 0;
506-
507+
507508
var rotationInputAction = m_RotationInput.action;
508509
var hasRotationInputActionWithBindings =
509510
rotationInputAction != null && rotationInputAction.m_BindingsCount > 0;
510-
511+
511512
// Check if we have transform and rotation controls to drive the pose.
512513
if (hasPositionInputActionWithBindings && hasRotationInputActionWithBindings)
513514
{

0 commit comments

Comments
 (0)