2013-04-22 22 views
1

我正在使用橘子醬6.2和cocos 2.1 beta3.x.2.1。當我以全屏模式部署Windows構建時,alt Tab鍵退出並返回到應用程序會導致應用程序轉到窗口模式。是否需要在app.icf /其他地方設置命令/設置以確保在alt +選項卡之後保留全屏?Windows alt +選項卡導致窗口模式

我發現後下方,這可能是相關的:

Alt-tab in full screen

感謝,

回答

0

你檢查過WinAllowAltEnterWinFullScreen ICF設置。我想這是你需要的,特別是WinFullScreen

同時檢查的WinFullScreen

If this is set, the display will be changed to a mode governed by WinWidth, WinHeight and WindowBpp. The surface will then cover the whole of the screen. If device does not support full screen mode with resolutions specified in WinWidth and WinHeight settings, application will start in windowed mode regardless of the WinFullScreen flag with specified resolution. Default is 0. 

描述所以我猜你可能會做是錯誤配置WinWidth/WinHeight設置。

+0

嗯,我有這樣的設置:WinFullScreen = 0 WinWidth = 1024 WinHeight = 768 WinAllowAltEnter = 1和WinFullScreen = 0 WinWidth = 1920 WinHeight = 1080 WinAllowAltEnter = 1。我也試過不指定winHeight/winWidth。一旦發生alt +選項卡,窗口就會獲得邊框,並且不是真正的全屏,它只是指定分辨率的一個大窗口。 – Line 2013-04-24 11:40:59

相關問題