sSparkParticle
0
-1
0
0
<undefined>
<undefined>
1
603
7
0
0
-1
2
self
0
0
1
direction = random(360);
speed = random(3);
gravity_direction = 270;
gravity = 0.2;
alarm[0] = 60 + random(120);
tposx[0] = x;
tposx[1] = x;
tposx[2] = x;
tposx[3] = x;
tposx[4] = x;
tposy[0] = y;
tposy[1] = y;
tposy[2] = y;
tposy[3] = y;
tposy[4] = y;
mycolor = c_yellow;
1
603
7
0
0
-1
2
self
0
0
1
image_alpha -= 0.01;
if (image_alpha <= 0) instance_destroy();
alarm[0] = 1;
1
603
7
0
0
-1
2
self
0
0
1
tposx[4] = tposx[3];
tposx[3] = tposx[2];
tposx[2] = tposx[1];
tposx[1] = tposx[0];
tposx[0] = x;
tposy[4] = tposy[3];
tposy[3] = tposy[2];
tposy[2] = tposy[1];
tposy[1] = tposy[0];
tposy[0] = y;
1
603
7
0
0
-1
2
self
0
0
1
move_bounce_all(0);
speed *= 0.4;
1
603
7
0
0
-1
2
self
0
0
1
draw_set_blend_mode(bm_add);
draw_set_color(mycolor);
draw_set_alpha(0.8 * image_alpha);
draw_line(x, y, tposx[0], tposy[0]);
draw_set_alpha(0.6 * image_alpha);
draw_line(tposx[0], tposy[0], tposx[1], tposy[1]);
draw_set_alpha(0.4 * image_alpha);
draw_line(tposx[1], tposy[1], tposx[2], tposy[2]);
draw_set_alpha(0.2 * image_alpha);
draw_line(tposx[2], tposy[2], tposx[3], tposy[3]);
draw_set_alpha(0.1 * image_alpha);
draw_line(tposx[3], tposy[3], tposx[4], tposy[4]);
draw_set_alpha(1);
draw_set_blend_mode(bm_normal);
0
0
0
0.5
0.100000001490116
0
0.100000001490116
0.100000001490116
0.200000002980232
-1
-1