Answers for "pixijs circle"

0

pixijs circle

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)
Posted by: Guest on January-04-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language