[]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转圈的效果,所以持续画扇形 但是画出来的扇形有透明度还有花纹 如图,很无解,请问下这是什么情况啊?
//实例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转圈的效果,所以持续画扇形 但是画出来的扇形有透明度还有花纹 如图,很无解,请问下这是什么情况啊?
没有找到相关结果
已邀请:
1 个回复
Aar0n
赞同来自: