I looking for a similar bit of code; I'm working on a space shooter and want to allow collision with objects to knock the ship about tilting it off its usual axis however I want it to return to level slowly after such an impact.
I took a look at ([this posting][1]) but didn't get quite the results I was after. Digging through a couple of other postings I came up with the following
Vector3 predictedUp = Quaternion.AngleAxis(
rigidbody.angularVelocity.magnitude * Mathf.Rad2Deg * stability / speed,
rigidbody.angularVelocity) * transform.up;
Vector3 torqueVector = Vector3.Cross(predictedUp, new Vector3(0f,0f,-1f));
//torqueVector = Vector3.Project(torqueVector, transform.up);
rigidbody.AddTorque(torqueVector * speed * speed);
The above thanks to [this posting][2]
[1]: http://answers.unity3d.com/questions/26554/how-do-i-calculate-a-corrective-torque-to-remove-r.html
[2]: http://answers.unity3d.com/questions/10425/how-to-stabilize-angular-motion-alignment-of-hover.html
↧