portraitUpsideDown in the simulator

Hey everyone!

I was wondering if it’s possible to test “portraitUpsideDown” in the simulator by rotating the device in the simulator left or right 180 degrees. When I do this my game just appears upside down.

Is this a limitation of the simulator or my code?

Thank you all!

[import]uid: 10763 topic_id: 14647 reply_id: 314647[/import]

Works fine in my simulator, double check your build.settings file, maybe?

Mine is currently;

[code]settings =
{
orientation =
{
default = “portrait”,
supported =
{
“portrait”, “portraitUpsideDown”
},
},

iphone =
{
plist =
{
UIStatusBarHidden=true,
UIPrerenderedIcon = true,

},
}

}[/code] [import]uid: 52491 topic_id: 14647 reply_id: 54166[/import]

Hey! Thanks Peach.
It’s working now. The problem was that I had the following line in my build.settings file

content = “portrait”
[import]uid: 10763 topic_id: 14647 reply_id: 54238[/import]

Happy to help :slight_smile: [import]uid: 52491 topic_id: 14647 reply_id: 54262[/import]