draw text

This commit is contained in:
Alexander Popov 2023-01-09 02:27:55 +03:00
parent 6ba3106240
commit d872a620c6
1 changed files with 13 additions and 0 deletions

13
~/GameMaker/draw_text.gml Normal file
View File

@ -0,0 +1,13 @@
/// @description Draw text
draw_set_font(Monogram_12);
draw_set_halign(fa_right);
var text = "Version: " + global.version + " | by emilecok";
var text_height = string_height(text);
draw_set_color(c_black);
draw_text(room_width - 10 + 1, room_height - text_height + 1, text);
draw_set_color(c_white);
draw_text(room_width - 10, room_height - text_height, text);