Egret设置横竖屏及适配方法
发表于:2024-11-28 作者:热门IT资讯网编辑
编辑最后更新 2024年11月28日,这篇文章主要为大家详细介绍了Egret设置横竖屏及适配的方法,文中示例代码介绍的非常详细,非常适合初学者入门,感兴趣的小伙伴们可以参考一下。一 : 对于方向锁定的 , 以竖屏为例 if
这篇文章主要为大家详细介绍了Egret设置横竖屏及适配的方法,文中示例代码介绍的非常详细,非常适合初学者入门,感兴趣的小伙伴们可以参考一下。
一 : 对于方向锁定的 , 以竖屏为例
if (egret.Capabilities.isMobile == true) { this.stage.orientation = egret.OrientationMode.PORTRAIT; this.stage.scaleMode = egret.StageScaleMode.EXACT_FIT; } else { this.stage.orientation = egret.OrientationMode.AUTO; this.stage.scaleMode = egret.StageScaleMode.SHOW_ALL;(比如 : 640 * 1134)全部显示出来(在PC浏览器上) }
二 : 对于方向不锁定(主要针对移动终端)
egret.OrientationMode.AUTO
private setResize() { if( this.stage.stageHeight / this.stage.stageWidth < 1.77 ){ this.stage.scaleMode = egret.StageScaleMode.FIXED_HEIGHT; }else{ this.stage.scaleMode = egret.StageScaleMode.FIXED_WIDTH; }}
可以使用this.stage.addEventListener(egret.Event.RESIZE, this.setResize, this);触发
注意 , 保存一份this.stage 如 ,
/**
- 获取游戏Stage对象
- @returns {egret.MainContext}
*/
public getStage():egret.Stage {
return egret.MainContext.instance.stage;
}
以上this.stage , 都需要替换成 egret.MainContext.instance.stage
以上就是Egret设置横竖屏及适配方法的具体代码,代码详细清楚,如果在日常工作遇到此问题,希望你能通过这篇文章解决问题。如果想了解更多相关内容,欢迎关注行业资讯频道!