| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- form pauseMenu
- {
- alignment = ALIGN_VCENTER_HCENTER
- container controlsContainer
- {
- width = 100%
- label controlsLabel
- {
- size = 100%, 30
- textAlignment = ALIGN_LEFT
- text = Controls
- fontSize = 22
- }
- radioButton useGamepad
- {
- group = controls
- position = 0, 35
- width = 150
- selected = true
- text = Gamepad
- }
- radioButton useTilt : useGamepad
- {
- position = 150, 35
- text = Tilt
- selected = false
- }
- }
- button newGameButton
- {
- position = 0, 90
- size = 150, 50
- text = New Game
- }
- button quitGameButton : newGameButton
- {
- position = 150, 90
- text = Quit Game
- }
- }
|