Skip to content

Commit

Permalink
feat: Copy version number by clicking on it (#184)
Browse files Browse the repository at this point in the history
Not much to say. Click > play click sound > copy.
The format is the same as displayed in the main menu.
  • Loading branch information
EttyKitty committed Dec 10, 2024
1 parent 6b99440 commit 89ea0fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions objects/obj_lol_version/Draw_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ if (obj_main_menu.stage>2){
draw_text(1598, 878, _build_date_line);
draw_set_halign(fa_left);
draw_set_alpha(1);
if (point_and_click([1400, 830, 1600, 900])) {
clipboard_set_text($"{_build_date_line}\n{_version_line}");
audio_play_sound(snd_click_small, 0, false);
}
}


Expand Down

0 comments on commit 89ea0fe

Please sign in to comment.