Unity VR LandscapeLeft无法在iOS中运行

时间:2016-10-17 20:56:53

标签: ios iphone unity3d orientation

我正在使用Unity 5.3.4f1,我试图强制我的应用中的某些场景只是左侧风景。

以下是我在Awake Method中使用的代码段

Scene scene = SceneManager.GetActiveScene();
String name = scene.name;
if (name.Equals ("Menu VR")) {
    Screen.orientation = ScreenOrientation.LandscapeLeft;
}

是否需要放在其他地方?它在android中运行得很好,但在iOS上无效。

使用XCode 8,测试设备正在运行iOS 10.0.2

也许这是一个Unity错误?我也尝试使用Unity 5.4.1,它仍然无法在iOS上运行。

1 个答案:

答案 0 :(得分:1)