Answers for "how set rigidbody velocity to specific height"

C#
0

how to decrease velocity of a Unity rigidbody

//Drecrese Rigidbody Speed
[SerializeField] private Rigidbody rb;

void FixedUpdate() {
  //Decrease speed
  rb.velocity -= rb.velocity * 0.1f;
}
Posted by: Guest on September-15-2021

C# Answers by Framework

Browse Popular Code Answers by Language