1 | if (big == 1) |
2 | { |
3 | image_alpha += (0.1 * f); |
4 | if (image_xscale < 1) |
5 | image_xscale += (0.1 * f); |
6 | if (image_yscale > 1) |
7 | image_yscale -= (0.1 * f); |
8 | } |
9 | if (x >= (room_width + 80)) |
10 | instance_destroy(); |