Unity.ScreenCapture.CaptureScreenShot()在VR上将图像倒转,我不知道为什么。ScreenCapture.CaptureScreenShot()在VR上将图像倒置旋转,我不知道为什么

问题描述 投票:0回答:1

就像标题所暗示的那样,我试图截图玩家正在看的东西,但照片几乎是颠倒的,我完全不知道发生了什么。我试着去看其他论坛的帖子,但我找不到和我有同样问题的人。

c# unity3d virtual-reality
1个回答
0
投票

确保你设置两只眼睛并使用StereoScreenCaptureMode。

void TakeScreenShot()
{
    ScreenCapture.CaptureScreenshot("YourFileName", StereoScreenCaptureMode.BothEyes);
}
© www.soinside.com 2019 - 2024. All rights reserved.