Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过按 Android 设备上的后退按钮来关闭游戏?
我无法让它工作。
在移动设备上,后退按钮映射到键盘退格键,vk_backspace可以这样使用:
vk_backspace
if (keyboard_check_pressed(vk_backspace)) { game_end(); }
来自手册:https ://docs2.yoyogames.com/source/_build/3_scripting/4_gml_reference/controls/device%20input/index.html
只需game_end()在您想关闭游戏时调用。
game_end()
例子:
if(keyboard_check(vk_escape)) { game_end(); }