touhou-pride-jam-2021/thpj3/objects/obj_title_text/Draw_0.gml

14 lines
581 B
Plaintext
Raw Normal View History

draw_set_font(fn_title_text);
draw_set_halign(fa_left);
2021-06-13 02:20:47 -07:00
draw_set_color(c_black);
draw_set_alpha(.25 + (.75 * abs(dsin(alpha_cycle))));
draw_text(x - 1, y - 1, "Press the any key to continue. . .");
draw_text(x + 1, y + 1, "Press the any key to continue. . .");
draw_text(x - 1, y + 1, "Press the any key to continue. . .");
draw_text(x + 1, y - 1, "Press the any key to continue. . .");
draw_set_color(c_white);
draw_set_alpha(1);
draw_text_color(x,y,"Press the any key to continue. . .", c_aqua, c_yellow, c_lime, c_fuchsia, .25 + (.75 * abs(dsin(alpha_cycle))) );