We will now create a "Game Over" HUD, displayed when you lose the game. Create a new file, GameOverItem.qml:
Item {
id: root
anchors.fill: parent
onVisibleChanged: {
scoreLabel.text = "Your score: " + score
}
Rectangle {
anchors.fill: parent
color: "black"
opacity: 0.75
}
Label {
id: gameOverLabel
anchors.centerIn: parent
color: "white"
font.pointSize: 50
text: "Game Over"
}
Label {
id: scoreLabel
width: parent.width
anchors.top: gameOverLabel.bottom
horizontalAlignment: "AlignHCenter"
color: "white"
font.pointSize: 20
}
Label {
width: parent.width
anchors.bottom...