如何在corona SDK中的display.newCircle()中添加图像

时间:2017-02-19 18:27:18

标签: lua corona

我想用自定义图片更改圆圈的颜色。是否可以这样做?

1 个答案:

答案 0 :(得分:1)

是的,这是可能的。试试

-- Create a vector rectangle
local circle = display.newCircle( 200, 200, 300 )

-- Set the fill (paint) to use the bitmap image
local paint = {
    type = "image",
    filename = "texture1.png"
}

-- Fill the circle
circle.fill = paint

您可以在documentation找到更多信息。