电晕模拟器垂直对齐

时间:2017-05-19 09:03:06

标签: corona

模拟器的默认设置如下图Default Image

我希望我的模拟器看起来像这样 New Image。我已经旋转但是当我再次打开项目时它会显示默认图像。我希望模拟器处于水平方向。请帮助

2 个答案:

答案 0 :(得分:2)

确保您的build.settings

中包含以下代码
settings =
{
    orientation =
    {
        default = "landscapeLeft",    -- Initial launch orientation
        -- use "landscapeLeft" - Device in the horizontal position with the home button at the left 
        -- or
        -- "landscapeRight" - Device in the horizontal position with the home button at the right
        supported = {"landscapeLeft"},  -- Table of allowed options for auto-orientation 
    },
}

您可以在App Orientation部分的文档中找到更多信息。

答案 1 :(得分:1)

您可以通过在build.settings文件中将orientation的默认值更改为landscapeRight或landscapeLeft,将模拟器的方向从纵向更改为横向。或者,当您创建新项目时,可以在默认方向下单击侧面单选按钮,将模拟器的方向更改为横向模式。