14 lines
365 B
Plaintext
14 lines
365 B
Plaintext
/// @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);
|