Код: Выделить всё
const mergedCircle = new PIXI.Graphics();
mergedCircle.alpha = 0.5;
mergedCircle.beginFill(0xffffff);
mergedCircle.drawCircle(300, 300, 150);
mergedCircle.drawCircle(450, 300, 150); // This shape should not "overlap" the first circle
mergedCircle.endFill();
app.stage.addChild(mergedCircle);
// Now create an outline for the entire shape
Чего я пытаюсь достичь
Объединенные круги
Подробнее здесь: https://stackoverflow.com/questions/793 ... tline-them