2017-02-19 6 views

ответ

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.

Смежные вопросы