windows standalone that automatically adapts to the screen resolution[Solved]

Hello everybody,
I wanted to ask if someone knows how to build a windows standalone from unity that adapts to the screen resolution automatically … thanks in advance.

If I understand you correctly you can use:

Screen.SetResolution (Screen.currentResolution.width, Screen.currentResolution.height, true);

Have a peek at the Screen-commands.

Okey, thank you very much Save :slight_smile: