Deltarune (Chapter 3) script viewer

← back to main script listing

gml_GlobalScript_draw_self_board

(view raw script w/o annotations or w/e)
1
function draw_self_board()
2
{
3
    draw_sprite_ext(sprite_index, image_index, round(x / 2) * 2, round(y / 2) * 2, image_xscale, image_yscale, image_angle, image_blend, image_alpha);
4
}
5
6
function draw_board_self()
7
{
8
    draw_sprite_ext(sprite_index, image_index, round(x / 2) * 2, round(y / 2) * 2, image_xscale, image_yscale, image_angle, image_blend, image_alpha);
9
}
10
11
function draw_self_rounded()
12
{
13
    draw_sprite_ext(sprite_index, image_index, round(x / 2) * 2, round(y / 2) * 2, image_xscale, image_yscale, image_angle, image_blend, image_alpha);
14
}