码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2d-x for wp8 设置横竖屏

时间:2014-07-15 22:23:19      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:cocos2d-x   游戏开发   

在主工程文件(xxx.cpp , xxx为你的项目名)中,

函数名为void xxx::SetWindow(CoreWindow^ window)

相关代码片如下:

<pre name="code" class="cpp">void ImpasseForLife::SetWindow(CoreWindow^ window)
{
    // Specify the orientation of your application here
    // The choices are DisplayOrientations::Portrait or DisplayOrientations::Landscape or DisplayOrientations::LandscapeFlipped
	DisplayProperties::AutoRotationPreferences = DisplayOrientations::Portrait;    
    //...
}

其中修改
DisplayOrientations::
之后的就行了,默认是Landscape,为横屏,Portrait是竖屏,第三个应该是横屏的另一个方向


cocos2d-x for wp8 设置横竖屏,布布扣,bubuko.com

cocos2d-x for wp8 设置横竖屏

标签:cocos2d-x   游戏开发   

原文地址:http://blog.csdn.net/immortal_steller/article/details/37777737

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!