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

Commit

Permalink
fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Jun 16, 2020
1 parent ee89d8c commit 63bad77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private MixedRealityPose[] GetJointPoses(Handedness handedness)
jointPoses[(int)TrackedHandJoint.LittleDistal] = GetJointPose(handedness, handSkeleton.Bones[(int)OculusApi.BoneId.Hand_Pinky3]);
jointPoses[(int)TrackedHandJoint.LittleTip] = GetJointPose(handedness, handSkeleton.Bones[(int)OculusApi.BoneId.Hand_PinkyTip]);

// Estimated: These joint poses are not provided by the Ouclus
// Estimated: These joint poses are not provided by the Oculus
// hand tracking implementation. But with the data we now have, we can
// estimate their poses fairly well.
jointPoses[(int)TrackedHandJoint.Palm] = HandUtilities.GetEstimatedPalmPose(jointPoses);
Expand Down Expand Up @@ -266,7 +266,7 @@ private Transform GetProxyTransform(Handedness handedness, OculusApi.BoneId bone
{
if (conversionProxyRootTransform.IsNull())
{
conversionProxyRootTransform = new GameObject($"Oculus Hand Conversion Proxy").transform;
conversionProxyRootTransform = new GameObject("Oculus Hand Conversion Proxy").transform;
conversionProxyRootTransform.transform.SetParent(MixedRealityToolkit.CameraSystem.MainCameraRig.PlayspaceTransform, false);
conversionProxyRootTransform.gameObject.SetActive(false);
}
Expand Down

0 comments on commit 63bad77

Please sign in to comment.