Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_final_boss_circle_Draw_0

(view raw script w/o annotations or w/e)
1
draw_set_alpha(draw_alpha);
2
scr_circle_outline
scr_circle_outline

function scr_circle_outline(arg0, arg1, arg2, arg3, arg4) { pos_x = arg0; pos_y = arg1; min_rad = arg2; max_thickness = arg3; circ_color = arg4; draw_set_colour(circ_color); for (var i = 0; i <= max_thickness; i++) draw_circle(pos_x, pos_y, min_rad + (i * 0.25), true); }
(x, y, outline - 1, 14, outline_color);
3
scr_circle_outline
scr_circle_outline

function scr_circle_outline(arg0, arg1, arg2, arg3, arg4) { pos_x = arg0; pos_y = arg1; min_rad = arg2; max_thickness = arg3; circ_color = arg4; draw_set_colour(circ_color); for (var i = 0; i <= max_thickness; i++) draw_circle(pos_x, pos_y, min_rad + (i * 0.25), true); }
(x, y, outline, 7, cursor_color);
4
draw_set_alpha(1);