如何用透明的内部背景绘制戒指(corona sdk)。 display.new Circle只会绘制一个圆圈但不会绘制戒指。
答案 0 :(得分: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