码迷,mamicode.com
首页 > 其他好文 > 详细

Egret之虚线的绘制

时间:2020-01-12 21:40:59      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:lse   ted   round   cal   dash   gre   nes   graphics   ati   

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之虚线的绘制

标签:lse   ted   round   cal   dash   gre   nes   graphics   ati   

原文地址:https://blog.51cto.com/aonaufly/2466253

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!