1 | if (con == 1) |
2 | { |
3 | image_angle += (rotspeed * 2); |
4 | direction += (rotspeed * 3); |
5 | timer++; |
6 | if (timer >= 10) |
7 | image_alpha -= 0.1; |
8 | if (image_alpha <= 0) |
9 | instance_destroy(); |
10 | } |