Device Rotation Problem

Hi,

I’m trying to enable the device rotation for my upcoming game, these are the parameters at build.settings file

settings =
{
orientation =
{
default = “landscapeRight”,
content = “landscapeRight”,
supported =
{
“landscapeRight”,“landscapeLeft”
}
},

iphone =
{
plist =
{
UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,
UIApplicationExitsOnSuspend = false,
UIStatusBarHidden = true,
UIPrerenderedIcon = true,
UIAppFonts =
{
“BradBunR.ttf”
}
}
}
}

When I build the app for the device, when I rotate it, the screen seems to rotate, nevertheless the game keeps in the same direction. Any ideas?

I’m using the build 704 (latest stable).

Thanks in advance.
[import]uid: 84893 topic_id: 24681 reply_id: 324681[/import]

Mine seems to be the same except I don’t have these lines:

-- Orientation section  
content = "landscapeRight"  
  
--plist  
UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight"  

Try playing with those values, maybe comment them out one at a time. [import]uid: 31262 topic_id: 24681 reply_id: 100103[/import]