42 lines
991 B
Plaintext
42 lines
991 B
Plaintext
MenuButton < Button
|
|
anchors.top: prev.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
margin.top: 10
|
|
|
|
Panel
|
|
id: mainMenuBackground
|
|
image:
|
|
source: /mainmenu/ui/background.png
|
|
smooth: true
|
|
anchors.fill: parent
|
|
|
|
RoundedPanel
|
|
id: mainMenu
|
|
size: 144 162
|
|
anchors.left: parent.left
|
|
anchors.bottom: parent.bottom
|
|
margin.left: 60
|
|
margin.bottom: 70
|
|
|
|
MenuButton
|
|
text: Enter Game
|
|
anchors.top: parent.top
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
margin.top: 18
|
|
onClick: |
|
|
local enterGameWindow = loadUI("/mainmenu/ui/entergamewindow.otui")
|
|
rootWidget:addChild(enterGameWindow)
|
|
GFX.fadeIn(enterGameWindow)
|
|
|
|
MenuButton
|
|
text: Options
|
|
onClick: rootWidget:addChild(loadUI("/mainmenu/ui/optionswindow.otui"))
|
|
|
|
MenuButton
|
|
text: Info
|
|
onClick: rootWidget:addChild(loadUI("/mainmenu/ui/infowindow.otui"))
|
|
|
|
MenuButton
|
|
text: Exit
|
|
onClick: exit()
|