[]graphics持续绘制扇形问题

private function onLoaded():void {
//实例UI界面
var testView:TestPageUI = new TestPageUI();
Laya.stage.addChild(testView);
 
pie = new Sprite();
Laya.stage.addChild(pie);
Laya.timer.frameLoop(1,this,onLoop);
}
 
private var curAngle:Number = 0;
private function onLoop():void
{
pie.graphics.drawPie(300,300,100,curAngle,curAngle+1,"#000000");
curAngle+=1;
if(curAngle>360)
{
Laya.timer.clear(this,onLoop);
}
}
为了实现CD转圈的效果,所以持续画扇形 但是画出来的扇形有透明度还有花纹  如图,很无解,请问下这是什么情况啊?
 
QQ截图20180725101055.png
已邀请:

Aar0n

赞同来自:

用webgl模式

该问题目前已经被锁定, 无法添加新回复

商务合作
商务合作