Durdles - 2-Player Action Game
import Felgo 4.0
import QtQuick 2.0
import "../common"
import ".."
SceneBase {
id:creditsScene
Rectangle {
anchors.fill: gameWindowAnchorItem
color: "white"
}
MenuButton {
label.height: 45
label.width: 45
label.source: Qt.resolvedUrl("../../assets/img/Back.png")
color: "transparent"
z: 10
anchors.right: gameWindowAnchorItem.right
anchors.verticalCenter: gameWindowAnchorItem.verticalCenter
onClicked: creditsScene.backButtonPressed()
}
Text {
font.family: standardFont.name
font.pixelSize: 24
text: "Christian Enengl\nBirgit Fritz\nFlorian Peinsold\nBianca Zankl"
color: "black"
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: 55
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
Grid {
id: grid
anchors.top: parent.top
anchors.topMargin: 205
anchors.horizontalCenter: parent.horizontalCenter
columnSpacing: 15
rowSpacing: 2
columns: 2
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/1001Fonts.jpg")
}
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/OpenGameArt.jpg")
}
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/FreeSound.jpg")
}
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/Qt.jpg")
}
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/felgo.jpg")
}
Image {
width: 151
height: 63
source: Qt.resolvedUrl("../../assets/img/credits/GitHub.jpg")
}
}
Image {
anchors.top: grid.bottom
anchors.topMargin: 2
anchors.horizontalCenter: parent.horizontalCenter
width: 318
height: 63