我需要一些帮助,因为自从Holotoolkit更新为MRTK以来,我无法在Hololens上部署我的应用程序; Unity 2017.4至2019.2; Visual Studio 2017至2019
我认为这是IL2CPP问题...我可以在Unity中进行构建,而不会出现任何错误消息。 我可以在VS中构建。 但是我无法部署。 当我使用“无需调试即可启动”进行部署时,出现此错误:
Severity Code Description Project File Line Suppression State Suppression State
Warning C4973 'Windows::UI::ViewManagement::IApplicationView2::SuppressSystemOverlays::set': marked as deprecated TestMRTKV2 D:\TestMRTKV2\TestMRTKV2\Build\TestMRTKV2\App.cpp 26
Severity Code Description Project File Line Suppression State Suppression State
Message Message: 'Use the TryEnterFullScreen method and IsFullScreenMode property instead of SuppressSystemOverlays. For more info, see MSDN.' TestMRTKV2 D:\TestMRTKV2\TestMRTKV2\Build\TestMRTKV2\App.cpp 26
我在Microsoft文档上看到了这一点:
我应该做的是:
SuppressSystemOverlays可能已更改或不适用于发行版 Windows 10之后的版本,请改用TryEnterFullScreenMode和 FullScreenSystemOverlayMode。
但是我不知道执行此操作的完整指令是什么,我不是开发人员,而且我担心会使所有程序崩溃!
非常感谢