Plus+ promo bar rotation issue

Hi everyone,

I’m having currently an issue with Plus+ and the promo bar.
My game uses the “landscape right” orientation in the menues and everything seems correct at this point. The Plus+ promo bar is shown with a correct rotation.

When playing the game (another level) you can pause it by rotating your device from portrait mode to the landscape mode and back again. When paused you get an option to go back to the menu.
Once you are again in the menu the Plus+ promo bar is rotated in the wrong direction (the game is in landscape mode and the promo bar and the Plus+ button are in portrait mode).

This problem occurs randomly and only on one of our two macs running the same project…

I tried using [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight], but this changes nothing.

Had someone such an issue before ?

Using Unity Pro with iPhone Advanced.

Try setting these in Unity to get the rotation your want:

	iPhoneKeyboard.autorotateToPortrait = false;
	iPhoneKeyboard.autorotateToPortraitUpsideDown = false;
	iPhoneKeyboard.autorotateToLandscapeLeft = false;
	iPhoneKeyboard.autorotateToLandscapeRight = true;

I got an answer from Plus+, you only have to set the Plus+ platform rotation right after having changed the app rotation to work around this bug.

Problem solved, thanks :slight_smile: