Skip to content

Commit 5fef24f

Browse files
authored
feat: Add pasting support for cheats (Adeptus-Dominus#470)
1 parent d53f0b9 commit 5fef24f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

objects/obj_popup_dialogue/Step_0.gml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ if (press_exclusive(vk_escape)) {
88
instance_destroy();
99
}
1010

11+
if (press_with_held(ord("V"), vk_control)) {
12+
keyboard_string += clipboard_get_text();
13+
}
14+
1115
if (blink > 0) {
1216
blink -= delta_time/1000000;
1317
} else if (blink <= 0) {

0 commit comments

Comments
 (0)