Advertisement
Guest User

Zoom feature

a guest
Jun 2nd, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var cam = view_camera[0];
  2. var cam_x = camera_get_view_x(cam);
  3. var cam_y = camera_get_view_y(cam);
  4. var cam_w = camera_get_view_width(cam);
  5. var cam_h = camera_get_view_height(cam);
  6. var zoom_h = 30;
  7. var zoom_ratio = window_get_width() / window_get_height();
  8. var zoom_w = zoom_h * zoom_ratio;
  9. if mouse_wheel_up() {
  10.     camera_set_view_size(cam, cam_w - zoom_w, cam_h - zoom_h);
  11.     camera_set_view_pos(cam, cam_x + zoom_w/2, cam_y + zoom_h/2);
  12. }
  13. if mouse_wheel_down() {
  14.     camera_set_view_size(cam, cam_w + zoom_w, cam_h + zoom_h);
  15.     camera_set_view_pos(cam, cam_x - zoom_w/2, cam_y - zoom_h/2);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement