Drop down box

is there any way or asset that can accomplish the following,I want a drop down box that enables the user to select the resolution they want from the resolutions available.

You know google answers faster than the forum usually :stuck_out_tongue:

I wondered if there really was nothing showing up on that topic and here is what I found 2 seconds later on google:

for (var res : Resolution in Screen.Resolutions) {
    if (GUILayout.Button (res.width.ToString() + " x " + res.height.ToString())) {
        Screen.SetResolution (res.width, res.height, true);
    }
}

From here: http://answers.unity3d.com/questions/374120/problem-making-list-from-resolutions.html

ps: I don’t mind you asking the question, I just wanted to point out you could have got your answer a lot faster…