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

Commit

Permalink
Merge branch 'development' into dev-vive-pro-support
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson authored May 28, 2019
2 parents f86b936 + e51e6b3 commit 1516595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Utilities/Solvers/SolverHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private void LateUpdate()

if (solver.enabled)
{
solver.SolverUpdate();
solver.SolverUpdateEntry();
}
}
}
Expand Down Expand Up @@ -240,7 +240,7 @@ private Transform MakeOffsetTransform(Transform parentTransform)

transformWithOffset.transform.localPosition = Vector3.Scale(AdditionalOffset, transformWithOffset.transform.localScale);
transformWithOffset.transform.localRotation = Quaternion.Euler(AdditionalRotation);
transformWithOffset.name = string.Format("{0} on {1} with offset {2}, {3}", gameObject.name, TrackedObjectToReference.ToString(), AdditionalOffset, AdditionalRotation);
transformWithOffset.name = $"{gameObject.name} on {TrackedObjectToReference.ToString()} with offset {AdditionalOffset}, {AdditionalRotation}";
return transformWithOffset.transform;
}
}
Expand Down

0 comments on commit 1516595

Please sign in to comment.