1
0

Step_0.gml 222 B

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