Answers for "unity apply velocity to gameobject"

C#
4

unity get velocity of gameobject

Rigidbody rb = GetComponent<Rigidbody>();
rb.velocity; // Velocity of gameObject (Vector3)
Posted by: Guest on June-08-2020

C# Answers by Framework

Browse Popular Code Answers by Language