0
カスタム画像で円の色を変更したいと思います。それは可能ですか?コロナのdisplay.newCircle()に画像を追加する方法
カスタム画像で円の色を変更したいと思います。それは可能ですか?コロナのdisplay.newCircle()に画像を追加する方法
はい、可能です。お試しください
-- 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にあります。