Answers for "unity how to add a bullet impact force"

C#
1

unity how to add a bullet impact force

if (hit.transform.tag == "Physics")         {             hit.rigidbody.AddForceAtPosition (bulletDirection * bulletForce, hit.point);         }
Posted by: Guest on April-13-2020

C# Answers by Framework

Browse Popular Code Answers by Language