pixi.js 性能测试                https://pixijs.io/bunny-mark/
pixi.js laya egret 性能对比 https://github.com/k8w/webgl_2d_benchmark

自测~~~
三星手机a9 测度
for (let i = 0; i < 500; i++) { let shape = new egret.Shape(); shape.graphics.beginFill(0xff0000) shape.graphics.drawCircle(0, 0, 200); shape.graphics.endFill(); this.stage.addChild(shape) } // egret 平均22帧

for (let i = 0; i < 500; i++) {
  var shape = new PIXI.Graphics();
  shape.beginFill(0xff0000);
  shape.drawCircle(0, 0, 200);
  shape.endFill();
      this.addChild(shape)
}
// pixi.js 平均35帧

 

 

}
平均18帧

相关文章:

  • 2021-06-03
  • 2021-05-30
  • 2022-01-13
  • 2021-12-27
  • 2021-11-21
  • 2021-05-06
  • 2022-01-23
  • 2021-06-30
猜你喜欢
  • 2022-12-23
  • 2021-12-17
  • 2021-11-01
  • 2021-04-26
  • 2021-06-14
  • 2022-02-28
  • 2021-09-19
相关资源
相似解决方案