1 |
if (frozen == 0) |
2 |
siner += 1; |
3 |
growth = 1 + (sin(siner / 6) * 0.05); |
4 |
growth2 = 1 + (cos(siner / 6) * 0.05); |
5 |
growth3 = 1 - (sin(siner / 7) * 0.05); |
6 |
ssx = sin(siner / 4) * 2 * image_xscale; |
7 |
ssx2 = sin(siner / 5) * 1 * image_xscale; |
8 |
ssx3 = cos(siner / 6) * 0.5 * image_xscale; |
9 |
draw_sprite_ext(spr_vines_flowey_3, image_index, (x - ssx3) + 20, y, image_xscale, growth3, 0, image_blend, 1); |
10 |
draw_sprite_ext(spr_vines_flowey_2, image_index, x - ssx2 - 20, y, image_xscale, growth2, 0, image_blend, 1); |
11 |
draw_sprite_ext(spr_vines_flowey, image_index, x - ssx, y, image_xscale, growth, 0, image_blend, 1); |