So I’m launching this and telling it to change the opening screen to say Welcome instead it keeps saying V-play and not in the color I’ve specified. What am I doing wrong? I also added a button to the main page but that isn’t showing up either!
Main:
import Felgo 3.0
import QtQuick 2.0
GameWindow {
id: gameWindow
screenWidth: 960
screenHeight: 640
Scene {
id: scene
// the "logical size" - the scene content is auto-scaled to match the GameWindow size
width: 480
height: 320
Rectangle {
anchors.fill: scene.gameWindowAnchorItem
color: "#324566"
}
Text {
text: "Welcome"
color: "white"
anchors.horizontalCenter: scene.gameWindowAnchorItem.horizontalCenter
anchors.top: scene.gameWindowAnchorItem.top
}
MyButton {
anchors.centerIn: scene
}
}
}