1 | timer += 1; |
2 | if (timer < 5) |
3 | { |
4 | if (image_yscale < 1) |
5 | image_yscale += 0.25; |
6 | if (image_alpha < 1) |
7 | image_alpha += 0.15; |
8 | } |
9 | if (timer > 6) |
10 | { |
11 | image_yscale -= 0.25; |
12 | image_alpha -= 0.2; |
13 | } |
14 | if (timer > 9) |
15 | instance_destroy(); |