Hi folks,
i´m rebuilding my starting camera code, but cannot find the key function calls for the mouse wheel nowhere in the manual!
Those are the key mappings for mouse i found:
Mouse left: on_mouse_left, mouse_left
Mouse middle: on_mouse_middle, mouse_middle
Mouse right: on_mouse_right, mouse_right
There´s a 'mickey.z' mentioned, but doesn´t seen to work... is the way i´m accessing the variable, peraphs?
Code:
...
  if(mickey.z>0){follow_cam_distance+=10*time_step;beep();}
  if(mickey.z<0){follow_cam_distance-=10*time_step;beep();}
...


If there´s any other way of accessing mouse wheel functions, i´d appreciate any help. Thanks in advance.