update folders

This commit is contained in:
2023-08-05 22:45:06 +03:00
parent c0aaec4c08
commit c2ef252c14
136 changed files with 0 additions and 0 deletions

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);

View File

@ -0,0 +1,8 @@
/// @description Fullscreen toggle
if window_get_fullscreen() {
window_set_fullscreen(false);
}
else {
window_set_fullscreen(true);
}

View File

@ -0,0 +1,3 @@
var background = layer_background_get_id(layer_get_id("Background"));
var my_color = make_colour_rgb(71, 45, 60);
layer_background_blend(background, my_color);