I am making a first person game where you look around with the mouse.
Using the code below:
Quote:
mouse_pos.x = mouse_cursor.x;
mouse_pos.y = mouse_cursor.y;
camera.tilt += mouse_force.y;
camera.pan -= mouse_force.x;
my.pan -= mouse_force.x;

the only issue is that its kinda slow,
I have to life the mouse three times to make a full rotation.
Anyone know how to speed up the turning?
Thanks
Rstgamer706