透明な内部背景 (コロナ SDK) でリングを描画する方法。dipslay.newCircle は円のみを描画し、リングは描画しません。
2254 次
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 に答える