Project installs vertical

Hey,

I am new to Unity and have been playing around with creating simple scenes. However, whenever I build my scene in Unity, it always seems to be set for a vertical layout as if I’m holding the phone upright. I want my project to install on the iphone in the landscape, horizontal layout. I’m not interested in checking to the phone orientation and then rotate the view, I just want the view to be landscape by default.

Thanks,

Wes

I think I found my answer in one of the iPhone examples. I need to place

iPhoneSettings.verticalOrientation = false;

in the function Start() in order to have the horizontal orientation that I need.