Files
old-agresija/objects/QuestionGUI/KeyPress_1.gml

13 lines
240 B
Plaintext
Raw Normal View History

2022-01-29 16:47:06 +01:00
if keyboard_check(ord("1"))
{
switch (keyboard_key)
{
case ord("1"):
case ord("2"):
case ord("3"):
case ord("4"):
instance_destroy()
instance_create_layer(0,0,"Instances", QuestionGUI)
break;
}
}