如何在像素中渲染圆

  • 本文关键字:像素 pixi.js
  • 更新时间 :
  • 英文 :


我把头撞到墙上。我无法在 pixijs 中渲染简单的圆。有什么治愈赞赏吗?

游戏链接 - https://pixiplayground.com/#/edit/eE~VcTxQSEi_I_DZk6Agz

如果您只是尝试渲染一个圆,这就是您所需要的:

var app = new PIXI.Application({
  width: window.innerWidth,
  height: window.innerHeight,
  backgroundColor: 0x2c3e50
});
document.body.appendChild(app.view);
const gr  = new PIXI.Graphics();
gr.beginFill(0xffffff);
gr.drawCircle(30, 30, 30);
gr.endFill();
app.stage.addChild(gr)

这是一个工作示例:https://www.pixiplayground.com/#/edit/5_EeuD2_YmdV8oleXRZ2P

相关内容

  • 没有找到相关文章

最新更新