So I'm creating physics rolling ball controls, and I do NOT want it to be based on force FORCE but on TORQUE. Each and every tutorial out there is based on FORCE, which takes away a huge amount of fun and skill from the game.
The problem is that when adding torque, this can be applied only on SELF space, which is not ok because the ball can have any actual rotation, or on WORLD direction, which is not ok because the camera does not have a fixed direction.
I'm bashing my head for almost 10 hours now but I can't come up with a "clean" solution.
I've tried to build a vector based on the camera axis and torque but it's making the ball rotate on the Y axis and nothing else.
Can anyone point me in the right direction?