Egret之虚线的绘制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Egret之虚线的绘制相关的知识,希望对你有一定的参考价值。
static createDashLine(color: number, width: number, height: number = 1): egret.Shape {
let $dashLineSp: egret.Shape = new egret.Shape();
$dashLineSp.width = width;
$dashLineSp.height = height;
$dashLineSp.graphics.lineStyle(height, color, 1.0, false, egret.StageScaleMode.EXACT_FIT, egret.CapsStyle.ROUND, egret.JointStyle.ROUND, 2, [5, 5]);
$dashLineSp.graphics.moveTo(0, 0);
$dashLineSp.graphics.lineTo(width, 0);
$dashLineSp.graphics.endFill();
return $dashLineSp;
}
以上是关于Egret之虚线的绘制的主要内容,如果未能解决你的问题,请参考以下文章