egret升级经验记录
Posted 半山
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egret升级经验记录相关的知识,希望对你有一定的参考价值。
1、StageDelegate.setDesignSize ;
直接去掉,在3.x里是直接在index.html里设置如:
data-content-width="960"
data-content-height="640"
2、_getFrameLabelForFrame
用frameLabels[i],注意判断i的范围
3、Cannot invoke an expression whose type lacks a call signature
不是函数,错把数组当函数用了
4、锚点问题
用sublime text的正则替换,并使用AnchorUtil
a、先替换 anchorX = anchorY的
([\w\.]+)\.anchorX.*anchorY.*=\s([\d\.]+)
AnchorUtil.setAnchor($1,$2)
b、再替换单独的 anchorX anchorY
([\w\.]+)\.anchorX.*=\s([\d\.]+)
AnchorUtil.setAnchorX($1,$2)
([\w\.]+)\.anchorY.*=\s([\d\.]+)
AnchorUtil.setAnchorY($1,$2)
c、创建游戏场景前调用AnchorUtil.init();
以上是关于egret升级经验记录的主要内容,如果未能解决你的问题,请参考以下文章