Unity, как закончить игру с ESC

void Update()
{
    if (Input.GetKey(KeyCode.Escape))
    {
        Application.Quit();
    }
}
RyanGar46