7 public static class PhysicsUtils
19 public static Vector3 Accelerate (
this Rigidbody rigidbody, Vector3 targetVelocity,
float acceleration,
20 float minSpeed = .05f,
bool preserveY =
false,
bool preserveX =
false,
bool canDecelerate =
true)
22 if (rigidbody == null || rigidbody.isKinematic)
25 var velocity = rigidbody.velocity;
26 var oldY = velocity.y;
27 var oldX = velocity.x;
29 var deltaVelocity = targetVelocity - velocity;
30 var deltaVelocityMag = deltaVelocity.magnitude;
31 var deltaVelocityDir = deltaVelocity / deltaVelocityMag;
32 var frameVelocityMagChange = acceleration * Time.deltaTime;
34 if (frameVelocityMagChange < deltaVelocityMag)
35 velocity += deltaVelocityDir * frameVelocityMagChange;
36 else velocity = targetVelocity;
38 float sqrSpeed = velocity.sqrMagnitude;
40 if (acceleration == 0f && sqrSpeed < minSpeed * minSpeed)
41 velocity = Vector3.zero;
49 rigidbody.velocity = velocity;
60 public static Vector3 GetTriggerHitLocation (Collider
self, Collider target, TriggerHitLocationMode hitLocationMode)
62 Vector3 location = Vector3.zero;
64 if (hitLocationMode == TriggerHitLocationMode.AtSelf)
65 location =
self.transform.position;
66 else if (hitLocationMode == TriggerHitLocationMode.AtTarget)
67 location = target.transform.position;
68 else if (hitLocationMode == TriggerHitLocationMode.Midpoint)
69 location = (
self.transform.position + target.transform.position) / 2;