简体中文
主题
strokeColor 属性用于设置或返回用于笔触的颜色。
strokeColor
var ctx = node.getComponent(cc.Graphics); ctx.lineWidth = 2; ctx.strokeColor = new cc.Color().fromHEX('#0000ff'); ctx.rect(20, 20, 250, 200); ctx.stroke();
返回 Graphics 组件参考