[LayaAirIDE 2.0]2d帧动画bug:编译运行会掉帧,编辑器不会掉帧,2.2.0版本以上都有这个问题

编译运行会掉帧,编辑器不会掉帧,2.2.0版本以上都有这个问题
已邀请:

Aar0n

赞同来自:

运行不卡

133*****831

赞同来自:

解决方案:
修改laya.core.js构造函数条件判断
if (FrameAnimation._sortIndexFun === null) 改成 if (FrameAnimation._sortIndexFun == null)
 
代码如下:
class FrameAnimation extends AnimationBase {
constructor() {
super();
if (FrameAnimation._sortIndexFun == null) {
FrameAnimation._sortIndexFun = MathUtil.sortByKey("index", false, true);
}

 
 

要回复问题请先

商务合作
商务合作