Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_titan_climb_darkness_Draw_0

(view raw script w/o annotations or w/e)
1
timer++;
2
y -= (sin(timer) * 0.3);
3
x -= cos(timer / 24);
4
draw_set_alpha(ball_alpha);
5
draw_set_color(c_white);
6
d_ellipse(x - radius - 2, y - radius - 2, x + radius + 2, y + radius + 2, false);
7
draw_set_color(c_black);
8
d_ellipse(x - radius, y - radius, x + radius, y + radius, false);
9
draw_set_alpha(1);