My game uses tilt controls, and when I tilt the iPod to the left or right, a black boarder kind of spins around the edges as it to flip the screen to make the image upright. Though, the image of the game never flips. It always stays in landscape mode (which is what i want, i just want to get rid of the spinning boarders).
Is there just a setting to turn off? like Auto rotate screen or something?
Just add this to your game
function Awake()
{
iPhoneKeyboard.autorotateToPortrait = false;
iPhoneKeyboard.autorotateToPortraitUpsideDown = false;
iPhoneKeyboard.autorotateToLandscapeLeft = false;
iPhoneKeyboard.autorotateToLandscapeRight = false;
}