- Edited
Hello!
I am working on a 3D game where the players will hit various spheres. I am not purely using physics for this - I'm going to calculate the projectile's launch angle first, and then I'll apply a physics impulse to actually launch it.
What I want to do and what I am struggling with is actually getting this angle based on the position of the click on the projectile. For example, if I hit it in the center as it approaches me, I'd expect the projectile to fly straight back. If I hit at towards the top, it should move down and vice versa.
The issue I have now is that the ray just casts without any rotation with the click.
Here is an example of what I would like to achieve - the green star is the position of the click (raycast start), and the red line is the raycast itself:
Would anyone be able to offer some advice for how I could calculate this angle? Or perhaps maybe recommend a new approach, if the one I am taking could be improved?