是否有一种干净的方法来检测QML
对象(例如Rectangle
)何时与另一个对象重叠?以下是两个Rectangle
碰撞的示例:
Item {
anchors.fill: parent
Rectangle {
x: 50
y: 100
width: 300
height: 300
color: "red"
}
Rectangle {
x: 30
y: 100
width: 300
height: 300
color: "green"
}
}
我应该使用MouseArea
s吗?