void Update()
{
//点击手机返回键关闭应用程序
if (Input.GetKeyDown(KeyCode.Escape) || Input.GetKeyDown(KeyCode.Home))
{
Application.Quit();
}
}
时间: 2024-11-05 06:17:36
void Update()
{
//点击手机返回键关闭应用程序
if (Input.GetKeyDown(KeyCode.Escape) || Input.GetKeyDown(KeyCode.Home))
{
Application.Quit();
}
}