2021-07-07 21:06:31 -07:00
|
|
|
d3d_set_projection_ortho(0,0,800,600,0)
|
|
|
|
|
|
|
|
draw_sprite_ext(bg_titlescreen, 0, 0, 0, 1, 1, 0, c_white, 1);
|
|
|
|
|
2021-06-28 18:45:39 -07:00
|
|
|
draw_set_alpha(.5*(fadein/30))
|
|
|
|
draw_set_color(c_white)
|
|
|
|
draw_roundrect(20,20,780,560,false)
|
|
|
|
if fadein < 30
|
|
|
|
{
|
|
|
|
fadein += 1
|
|
|
|
}
|
|
|
|
draw_set_alpha(fadein/30)
|
|
|
|
draw_set_color(c_black)
|
|
|
|
draw_set_font(fn_main)
|
|
|
|
draw_text(60,60,string_hash_to_newline("Credits:"))
|
|
|
|
draw_set_font(fn_main)
|
2021-07-07 18:45:10 -07:00
|
|
|
draw_text(150-fadein,120,string_hash_to_newline("studio tinyleaf"))
|
|
|
|
draw_text(140+fadein,160,string_hash_to_newline("Jennifer Hogueison (magicalfeyfenny)"))
|
2021-06-28 18:45:39 -07:00
|
|
|
draw_text(170-fadein,200,string_hash_to_newline("Sound created with SFXR"))
|
|
|
|
draw_text(110+fadein,240,string_hash_to_newline("Music created with Schism Tracker"))
|
|
|
|
draw_text(170-fadein,280,string_hash_to_newline("Art created with Paint Tool SAI"))
|
|
|
|
draw_text(110+fadein,320,string_hash_to_newline("Game programmed with GameMaker 8.1"))
|
|
|
|
draw_text(170-fadein,400,string_hash_to_newline("Made in 72 hours for the GMC Jam 7"))
|
|
|
|
draw_set_alpha(1)
|
|
|
|
|
|
|
|
draw_set_color(c_white)
|
|
|
|
draw_rectangle(-1,580,801,601,false)
|
|
|
|
draw_set_color(c_black)
|
|
|
|
draw_set_font(fn_smaller)
|
|
|
|
draw_text(10,465*(800/640),string_hash_to_newline("Esc: Back to main menu"))
|
2021-07-07 18:45:10 -07:00
|
|
|
|