I would like to work on a camera controller, inspired by TrackBallControls with pointerLock API but I haven’t really saw useful resources to work with. My goal is to have a controller behaving like TrackBallControls (unlimited rotation, with a target but with pointerLock API like in PointerLockControls).
But I don’t really know where to start. I saw this repo when I was digging some examples and it’s pretty well documented/commented, and the controls behave almost like I want to (except for the pointerLock API).
But it seems like I need some basics in camera controlling, rotating around an object, etc… And because PointerLockControls behave differently than TrackBallControls, especially with coordinates values and calculation, I can’t use the same calculation for rotation methods as in TrackBallControls…
So yep, seems like a big project for me ! So idk if anyone has some advices, some tips or some resources to read about camera controlling/rotation, so maybe I can try to code a controller module from scratch ?
yep I tried to, but I can’t really understand how calculation works for like interpreting mouse movements to rotate the camera around an object or something like that. Idk if just copying the formula is a good thing to do.
I learned a bit of Euler angles since three.js implements Euler but again I don’t know if it can be a solution to work with that or not (TrackBallControls doesn’t seems to use Euler calculations).
It’s like I’m missing basics of camera interaction or something like that but I can’t find any useful resources detailing systems like camera controllers. (maybe I’m searching badly)