Step_0.gml 267 B

123456789101112131415
  1. if delay > 0
  2. {
  3. image_blend = make_colour_hsv(170, 255, 0);
  4. delay--;
  5. exit;
  6. }
  7. val += 2;
  8. image_blend = make_colour_hsv(170, 255, val);
  9. speed += acc;
  10. var _stretch = abs(speed) * 0.1;
  11. image_xscale = base_scale + _stretch;
  12. image_yscale = base_scale / (1 + _stretch);