I am trying to make my player throw a grenade. The problem is that sometimes the grenade collides with the player and hence doesn’t take the expected trajectory.
I tried to solve the problem by instantiating the grenade in front of the player by a descent distance (player.transform.position + (player.transform.forward.normalized * 2)). The problem no longer exists but the output is very ugly since the grenade starts apart from the player.
Do you have any suggestions about how to solve this problem or working around it in a more professional way.