PixiJS:无法正确绘制圆形矩形

时间:2019-01-22 06:39:24

标签: javascript pixijs

绘制圆角矩形后,拐角不是完美的圆角。角落是像素化的:

enter image description here

如何绘制没有像素化角的正确倒圆的矩形?这是我的代码:

var graphics = new PIXI.Graphics();
graphics.beginFill(0x3e494b);
graphics.lineStyle(4, 0x0, .3);
graphics.drawRoundedRect(
    x,
    y,
    width,
    height,
    30
);
graphics.endFill();

1 个答案:

答案 0 :(得分:1)

如果您的项目使用Pixi Application,请尝试将antialias选项设置为true。例如:

const app = new Application({antialias: true});