Can’t get Unity to output to iPhone wide view to save my life, what am I doing wrong?
Brian
Can’t get Unity to output to iPhone wide view to save my life, what am I doing wrong?
Brian
Just add the following code to one of your active scripts.
function Awake () {
// set screen orientation and sleep mode
iPhoneSettings.verticalOrientation = false;
iPhoneSettings.screenCanDarken = false;
}