1
0

Create_0.gml 320 B

12345678910111213141516
  1. direction = random(360);
  2. image_angle = direction;
  3. r = 256;
  4. x = global.player.x + lengthdir_x(r, direction);
  5. y = global.player.y + lengthdir_y(r, direction);
  6. val = 0;
  7. image_blend = make_colour_hsv(170, 255, val);
  8. base_scale = random_range(0.75, 1.25);
  9. speed = 0;
  10. acc = random_range(-0.05, -0.08);
  11. delay = random(60);