How did you set up the view? IF it's like

camera.x = player.x + 200 * cos blah blah blah


Then swap the 200 for

var dist = 200;// im a global var

camera.x = player.x + dist

Then allow dist to be changed by anything, say the mouse wheel.


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!