Last active
September 9, 2024 17:33
-
-
Save mstevenson/4958837 to your computer and use it in GitHub Desktop.
Unity extension methods for computing a ConfigurableJoint.TargetRotation value from a given local or world rotation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public static class ConfigurableJointExtensions { | |
/// <summary> | |
/// Sets a joint's targetRotation to match a given local rotation. | |
/// The joint transform's local rotation must be cached on Start and passed into this method. | |
/// </summary> | |
public static void SetTargetRotationLocal (this ConfigurableJoint joint, Quaternion targetLocalRotation, Quaternion startLocalRotation) | |
{ | |
if (joint.configuredInWorldSpace) { | |
Debug.LogError ("SetTargetRotationLocal should not be used with joints that are configured in world space. For world space joints, use SetTargetRotation.", joint); | |
} | |
SetTargetRotationInternal (joint, targetLocalRotation, startLocalRotation, Space.Self); | |
} | |
/// <summary> | |
/// Sets a joint's targetRotation to match a given world rotation. | |
/// The joint transform's world rotation must be cached on Start and passed into this method. | |
/// </summary> | |
public static void SetTargetRotation (this ConfigurableJoint joint, Quaternion targetWorldRotation, Quaternion startWorldRotation) | |
{ | |
if (!joint.configuredInWorldSpace) { | |
Debug.LogError ("SetTargetRotation must be used with joints that are configured in world space. For local space joints, use SetTargetRotationLocal.", joint); | |
} | |
SetTargetRotationInternal (joint, targetWorldRotation, startWorldRotation, Space.World); | |
} | |
static void SetTargetRotationInternal (ConfigurableJoint joint, Quaternion targetRotation, Quaternion startRotation, Space space) | |
{ | |
// Calculate the rotation expressed by the joint's axis and secondary axis | |
var right = joint.axis; | |
var forward = Vector3.Cross (joint.axis, joint.secondaryAxis).normalized; | |
var up = Vector3.Cross (forward, right).normalized; | |
Quaternion worldToJointSpace = Quaternion.LookRotation (forward, up); | |
// Transform into world space | |
Quaternion resultRotation = Quaternion.Inverse (worldToJointSpace); | |
// Counter-rotate and apply the new local rotation. | |
// Joint space is the inverse of world space, so we need to invert our value | |
if (space == Space.World) { | |
resultRotation *= startRotation * Quaternion.Inverse (targetRotation); | |
} else { | |
resultRotation *= Quaternion.Inverse (targetRotation) * startRotation; | |
} | |
// Transform back into joint space | |
resultRotation *= worldToJointSpace; | |
// Set target rotation to our newly calculated rotation | |
joint.targetRotation = resultRotation; | |
} | |
} |
Hey @mstevenson, Quick question with the "StartRotation" quaternion. Is this the local rotation (Global, if not a child to anything) of the transform that the joint is created on at the time of joint-creation? Is this ever updated if connected bodies, anchors, etc change?
Thanks for this, it works great. I've been trying to wrap my head around what each step is doing so I've paraphrased it below for clarity. I still don't understand why Quaternion.Inverse (targetLocalRotation) * startLocalRotation
is required for it to work. It doesn't quite produce the local-space delta rotation.
Anyways here's my understanding of how this is working (for local space):
// Calculate how far the target's local rotation has moved from its initial local rotation.
// The calculation should be `deltaRotation = targetLocalRotation * Quaternion.Inverse(startLocalRotation)`,
// but for some reason the order of operations has to be changed for this to actually work.
// Note that in order to achieve a desired delta rotation on the body, the opposite of that rotation
// has to be applied to the joint, and it has to be applied in joint space.
Quaternion deltaRotation = Quaternion.Inverse(targetLocalRotation) * startLocalRotation;
// Calculate rotations for converting from joint space to local space and back.
Vector3 jointX = joint.axis;
Vector3 jointZ = Vector3.Cross(jointX, joint.secondaryAxis).normalized;
Vector3 jointY = Vector3.Cross(jointZ, jointX).normalized;
Quaternion localToJointSpace = Quaternion.LookRotation(jointZ, jointY);
Quaternion jointToLocalSpace = Quaternion.Inverse(localToJointSpace);
// Convert the local space rotation into a joint space rotation.
joint.targetRotation = jointToLocalSpace * deltaRotation * localToJointSpace;
Thank you very much! You saved my day
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can I request that you add an additional method here to return the Local/World space rotation of the joint's targetRotation? I'm trying to Slerp a joint's targetRotation through to a new orientation but I need to know it's current orientation first.
public static Quaternion GetTargetRotation(ConfigurableJoint joint, Quaternion startRotation, Space space) { ... }
Thanks