menu.form 836 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. form pauseMenu
  2. {
  3. alignment = ALIGN_VCENTER_HCENTER
  4. container controlsContainer
  5. {
  6. width = 100%
  7. label controlsLabel
  8. {
  9. size = 100%, 30
  10. textAlignment = ALIGN_LEFT
  11. text = Controls
  12. fontSize = 22
  13. }
  14. radioButton useGamepad
  15. {
  16. group = controls
  17. position = 0, 35
  18. width = 150
  19. selected = true
  20. text = Gamepad
  21. }
  22. radioButton useTilt : useGamepad
  23. {
  24. position = 150, 35
  25. text = Tilt
  26. selected = false
  27. }
  28. }
  29. button newGameButton
  30. {
  31. position = 0, 90
  32. size = 150, 50
  33. text = New Game
  34. }
  35. button quitGameButton : newGameButton
  36. {
  37. position = 150, 90
  38. text = Quit Game
  39. }
  40. }