1

如何绘制具有透明内部背景的环(corona sdk)。dipslay.newCircle 将只绘制一个圆而不是环。

4

1 回答 1

2

试试这个

local circle = display.newCircle (100,100,200)
circle:setFillColor(0,0,0,0) --This will set the fill color to transparent
circle.strokeWidth = 3 --This is the width of the outline of the circle
circle:setStrokeColor(255,0,0) --This is the color of the outline
于 2013-08-13T00:44:55.093 回答