Liberi
An exergame built for kids with CP!
FloppyJoint.cs
1 using UnityEngine;
2 using System.Collections;
3 
9 [Script(ScriptRole.View)]
10 public class FloppyJoint : MonoBehaviour
11 {
12  public float MaxSqrMagnitude; // When the sqrMagnitude of RootVelocity is equal to this number, the angle of the joint is entirely governed by velocity
13  public float SnapSpeed; // The speed at which the joint rotates to the target rotation.
14  public bool CalculateRestingZ = true; // Whether or not it should calculate Resting Z for joints, if not, the default rotation is used.
15  public Transform Parent;
16 
17  Transform _parent;
18  float _rotationOffset = -90;
19  Vector3 _rootVelocity;
20  Vector3 _lastFramePosition;
21  float _defaultRestingZ;
22 
23  void Awake()
24  {
25  if (Parent == null)
26  _parent = transform.parent;
27  else
28  _parent = Parent;
29 
30  // Initialize the _lastFramePosition to the starting position;
31  _lastFramePosition = transform.position;
32 
33  if (!CalculateRestingZ)
34  _defaultRestingZ = transform.eulerAngles.z;
35  }
36 
37  void UpdateRootVelocity()
38  {
39  // Keep track of instanaeous velocity.
40  _rootVelocity = _lastFramePosition - transform.position;
41  _lastFramePosition = transform.position;
42  }
43 
44  void Update()
45  {
46  UpdateRootVelocity();
47 
48  float restingZEuler;
49  var flip = Mathf.Sign(_parent.localScale.x);
50 
51  if (CalculateRestingZ)
52  restingZEuler = Mathf.Atan2((_parent.transform.position.y - transform.position.y), (_parent.transform.position.x - transform.position.x) * flip) * Mathf.Rad2Deg + _rotationOffset;
53  else
54  restingZEuler = _defaultRestingZ;
55 
56  var velocityZEuler = Mathf.Atan2(-_rootVelocity.y, -_rootVelocity.x * flip) * Mathf.Rad2Deg + _rotationOffset;
57 
58  var targetZEuler = Mathf.LerpAngle(restingZEuler, velocityZEuler, _rootVelocity.sqrMagnitude / MaxSqrMagnitude);
59  transform.eulerAngles = Vector3.forward * Mathf.LerpAngle(transform.eulerAngles.z, targetZEuler, Time.deltaTime * SnapSpeed);
60  }
61 }
A goofy physics hack used make floppy appendages on some mobs. Used because physics doesn't simulate ...
Definition: FloppyJoint.cs:10