|
1
|
function draw_monster_body_part(arg0, arg1, arg2, arg3)
|
|
2
|
{
|
|
3
|
draw_sprite_ext(arg0, arg1, arg2, arg3, image_xscale, image_yscale, image_angle, image_blend, image_alpha);
|
|
4
|
if (flash == 1)
|
|
5
|
draw_sprite_ext_flash(arg0, arg1, arg2, arg3, image_xscale, image_yscale, image_angle, image_blend, (-cos(fsiner / 5) * 0.4) + 0.6);
|
|
6
|
}
|
|
7
|
|
|
8
|
function draw_monster_body_part_netskietail(arg0, arg1, arg2, arg3, arg4)
|
|
9
|
{
|
|
10
|
draw_sprite_ext(arg0, arg1, arg2, arg3, image_xscale, image_yscale, image_angle, image_blend, arg4);
|
|
11
|
if (flash == 1)
|
|
12
|
draw_sprite_ext_flash(arg0, arg1, arg2, arg3, image_xscale, image_yscale, image_angle, image_blend, (-cos(fsiner / 5) * 0.4) + 0.6);
|
|
13
|
}
|