I am working on a app that i want to always run in a Landscape mode. I have this working just fine in the build.settings file.
I need some help though in getting it so that it works in a landscape mode when its either RightSideUp or RightSideDown or… however i should say this.
So what do i need to put in my build.settings to make it work for Android and IOS so no matter which Landscape mode a person is holding the device in, it will allow for it. right now what i have will let you hold the game upside down…
[lua]settings =
{
android =
{
},
orientation =
{
default = “landscape”,
supported =
{
“landscape”,
},
},
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleDisplayName = “AppName”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
},
}
}[/lua] [import]uid: 67604 topic_id: 21638 reply_id: 321638[/import]