Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_draw_circle_lowres

(view raw script w/o annotations or w/e)
1
function 
scr_draw_circle_lowres
scr_draw_circle_lowres

function
scr_draw_circle_lowres(arg0, arg1, arg2, arg3, arg4 = false, arg5 = 1)
{ if (!instance_exists(obj_lowres_circle_manager)) instance_create_depth(0, 0, 0, obj_lowres_circle_manager); with (obj_lowres_circle_manager) draw_func(arg0, arg1, arg2, arg3, arg4, arg5); }
(arg0, arg1, arg2, arg3, arg4 = false, arg5 = 1)
2
{
3
    if (!instance_exists(obj_lowres_circle_manager))
4
        instance_create_depth(0, 0, 0, obj_lowres_circle_manager);
5
    with (obj_lowres_circle_manager)
6
        draw_func(arg0, arg1, arg2, arg3, arg4, arg5);
7
}