Create_0.gml 395 B

123456789101112131415161718192021222324
  1. persistent = true;
  2. var _cam = camera_create_view(0, 0, RES_W, RES_H);
  3. view_camera[0] = _cam;
  4. display_set_gui_size(RES_W, RES_H);
  5. gpu_set_texfilter(false);
  6. window_set_size(1920, 1080);
  7. cam_width = RES_W;
  8. cam_height = RES_H;
  9. bound_left = 0;
  10. bound_right = room_width;
  11. bound_top = 0;
  12. bound_bottom = room_height;
  13. x_to = 0;
  14. y_to = 0;
  15. smooth = 0.08;
  16. shake_magnitude = 0;
  17. follow = global.player;