thsj2022/objects/obj_disclaimer/Draw_0.gml

34 lines
1.1 KiB
Plaintext
Raw Normal View History

draw_set_halign( fa_center );
draw_set_font( fn_textlarge );
2022-08-15 01:38:25 -07:00
draw_text_color( 320, 30, "The following is a fan-created derivative work of Touhou Project.\n"
+ "Touhou Project's copyright belongs to Team Shanghai Alice.\n\n"
+ "Developed for Touhou Station Game Jam 2022\n"
+ "8/16/2022 ~ 8/24/2022\n"
+ "by studio_tiny_leaf / magicalfeyfenny\n"
, c_teal, c_teal, c_aqua, c_aqua, alpha_cycle);
draw_set_font( fn_textsmall );
2022-08-15 01:38:25 -07:00
draw_set_halign( fa_center );
2022-08-22 23:53:47 -07:00
draw_text_color( 320, 230, "JAM RELEASE BUILD", c_teal, c_teal, c_aqua, c_aqua, alpha_cycle);
2022-08-15 01:38:25 -07:00
draw_set_halign( fa_right );
2022-08-22 23:53:47 -07:00
draw_text_color( 630, 260, "\n\n\n\n"
2022-08-15 01:38:25 -07:00
+ "Team Shanghai Alice:\n"
+ "https://touhou-project.news/\n"
, c_teal, c_teal, c_aqua, c_aqua, alpha_cycle);
draw_set_halign( fa_left );
2022-08-22 23:53:47 -07:00
draw_text_color( 10, 260, ""
+ "https://fenny.space\n"
+ "https://magicalfeyfenny.itch.io\n"
+ "twitter: @magicalfeyfenny\n"
+ "\n"
2022-08-15 01:38:25 -07:00
+ "Source code:\n"
2022-08-22 23:53:47 -07:00
+ "https://git.fenny.space/magicalfeyfenny/thsj2022\n"
, c_teal, c_teal, c_aqua, c_aqua, alpha_cycle);
2022-08-22 23:53:47 -07:00