2017-02-19 20 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にあります。

関連する問題