Unity iOS Vuforia 横竖屏切换摄像机镜像问题

问题:

unity iOS横屏时,主工程Portrait,unity工程AutoRotation,主工程打开unity后设置横屏方向会偶现出现摄像机翻转镜像问题。

unity iOS横竖屏切换时,主工程Portrait,unity工程AutoRotation,在手机设备iPhone 13Pro必现,横屏进入后在切换竖屏进入必镜像翻转。

原因:

在进入unity后,哪怕主工程设置正确的屏幕方向:Portrait和LandscapeLeft(iOS端设置朝右侧),但是进入unity后根据打印日志发现并不是正确的屏幕方向,会出现PortraitUpsideDown和LandscapeRight异常朝向方向。

解决方法:

Update监测横竖屏状态,强制翻转屏幕朝向。

cs 复制代码
    public bool isPortrait = true;
    public bool isCheck = true;
    private void UpdateRotate()
    {
        if(!isCheck) return;
        if (isPortrait && Screen.orientation != ScreenOrientation.Portrait)
        {
            Debug.Log($"ScreenManager::UpdateRotate - IOS端,竖屏但是监测到屏幕:{Screen.orientation}不是竖屏,强制翻转");
            Screen.orientation = ScreenOrientation.AutoRotation;
            Screen.autorotateToPortrait = true;
            Screen.autorotateToPortraitUpsideDown = false;
            Screen.autorotateToLandscapeRight = false;
            Screen.autorotateToLandscapeLeft = false;
            Screen.orientation = ScreenOrientation.Portrait;
        }
        else if (!isPortrait && Screen.orientation != ScreenOrientation.LandscapeLeft)
        {
            Debug.Log($"ScreenManager::UpdateRotate - IOS端,横屏但是监测到屏幕:{Screen.orientation}不是横屏,强制翻转");
            Screen.orientation = ScreenOrientation.AutoRotation;
            Screen.autorotateToPortrait = false;
            Screen.autorotateToPortraitUpsideDown = false;
            Screen.autorotateToLandscapeRight = false;
            Screen.autorotateToLandscapeLeft = true;
            Screen.orientation = ScreenOrientation.LandscapeLeft;
        }
    }

注意事项:

  1. iOS的左右朝向和Unity的左右朝向是相反的,Screen.orientation = ScreenOrientation.LandscapeLeft;相当于iOS的右侧。
  2. unity打包的工程设置为AutoRotation,并在unity启动成功后等待iOS发送过来横竖屏切换在设置,否则iOS主工程会报错,操作相同屏幕朝向参数异常。
  3. unity工程退出的时候,需要还原屏幕朝向,否则iOS主工程退出异常。
cs 复制代码
       Screen.orientation = ScreenOrientation.AutoRotation;
       Screen.autorotateToPortrait = true;
       Screen.autorotateToPortraitUpsideDown = true;
       Screen.autorotateToLandscapeRight = true;
       Screen.autorotateToLandscapeLeft = true;
相关推荐
小小鱼儿小小林36 分钟前
苹果WWDC25重磅发布:Apple Intelligence与Liquid Glass引领未来
ios·wwdc·苹果
I烟雨云渊T37 分钟前
2025年的WWDC所更新的内容
macos·ios·wwdc
Fatbobman(东坡肘子)37 分钟前
WWDC 2025 开发者特辑 | 肘子的 Swift 周报 #088
开发语言·macos·ios·swiftui·ai编程·swift·wwdc
vastgrassland37 分钟前
从WWDC看苹果产品发展的规律
macos·ios·wwdc
Magnum Lehar2 小时前
wpf3d游戏引擎下的AssetRegister.cs实现
游戏引擎·wpf
Digitally2 小时前
如何将文件从 iPhone 传输到闪存驱动器
ios·iphone
二流小码农4 小时前
鸿蒙开发:绘制服务卡片
android·ios·harmonyos
程序员老刘5 小时前
iOS 26 beta1 真机无法执行hot reload
flutter·ios·客户端
Magnum Lehar6 小时前
wpf游戏引擎的Components的entity组件实现
游戏引擎·wpf