9 [Script(ScriptRole.View)]
12 public float MaxSqrMagnitude;
13 public float SnapSpeed;
14 public bool CalculateRestingZ =
true;
15 public Transform Parent;
18 float _rotationOffset = -90;
19 Vector3 _rootVelocity;
20 Vector3 _lastFramePosition;
21 float _defaultRestingZ;
26 _parent = transform.parent;
31 _lastFramePosition = transform.position;
33 if (!CalculateRestingZ)
34 _defaultRestingZ = transform.eulerAngles.z;
37 void UpdateRootVelocity()
40 _rootVelocity = _lastFramePosition - transform.position;
41 _lastFramePosition = transform.position;
49 var flip = Mathf.Sign(_parent.localScale.x);
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;
54 restingZEuler = _defaultRestingZ;
56 var velocityZEuler = Mathf.Atan2(-_rootVelocity.y, -_rootVelocity.x * flip) * Mathf.Rad2Deg + _rotationOffset;
58 var targetZEuler = Mathf.LerpAngle(restingZEuler, velocityZEuler, _rootVelocity.sqrMagnitude / MaxSqrMagnitude);
59 transform.eulerAngles = Vector3.forward * Mathf.LerpAngle(transform.eulerAngles.z, targetZEuler, Time.deltaTime * SnapSpeed);
A goofy physics hack used make floppy appendages on some mobs. Used because physics doesn't simulate ...