自己写的时候发现圆形背景不透明,
Rectangle {
id: block
// img.width; height: img.height
Image {
id: img
anchors.fill: parent
source: "../shared/pics/redStone.png"
}
}
Rectangle 改为 Item就可以了:
Item {
id: block
// img.width; height: img.height
Image {
id: img
anchors.fill: parent
source: "../shared/pics/redStone.png"
}
}