Liberi
An exergame built for kids with CP!
PhysicsUtils.cs
1 using System;
2 using UnityEngine;
3 
7 public static class PhysicsUtils
8 {
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)
21  {
22  if (rigidbody == null || rigidbody.isKinematic)
23  return Vector3.zero;
24 
25  var velocity = rigidbody.velocity;
26  var oldY = velocity.y;
27  var oldX = velocity.x;
28 
29  var deltaVelocity = targetVelocity - velocity;
30  var deltaVelocityMag = deltaVelocity.magnitude;
31  var deltaVelocityDir = deltaVelocity / deltaVelocityMag;
32  var frameVelocityMagChange = acceleration * Time.deltaTime;
33 
34  if (frameVelocityMagChange < deltaVelocityMag)
35  velocity += deltaVelocityDir * frameVelocityMagChange;
36  else velocity = targetVelocity;
37 
38  float sqrSpeed = velocity.sqrMagnitude;
39 
40  if (acceleration == 0f && sqrSpeed < minSpeed * minSpeed)
41  velocity = Vector3.zero;
42 
43  if (preserveY)
44  velocity.y = oldY;
45 
46  if (preserveX)
47  velocity.x = oldX;
48 
49  rigidbody.velocity = velocity;
50  return velocity;
51  }
52 
60  public static Vector3 GetTriggerHitLocation (Collider self, Collider target, TriggerHitLocationMode hitLocationMode)
61  {
62  Vector3 location = Vector3.zero;
63 
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;
70 
71  return location;
72  }
73 }