Mac Os X Close Button

Hello!

Is there a way to force Unity to produce a standalone OS X build with red “close window” button enabled? When I publish Mac build, close window option is always disabled and I have to close the app via cmd+q or Apple Menu.

Sorry if that’s noobish question, I’m not very familiar with OS X.

Thanks,
Calveit

390835--13433--$zrzut_ekranu_2010_09_21_godz_182017_151.png

There’s no setting for that, unfortunately.

However you could make your on key or button to quit

function Update () {
    if (Input.GetKey ("escape")) {
        Application.Quit();
    }
}