]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/options.menu
Added the table graphics, added the server/weapon/weapon2 options,
[divverent/nexuiz.git] / scmenu / options.menu
1 // Property of Alientrap/AK
2 // Options menu
3
4 Item Window Options
5 {
6         Derive Picture Table1
7         {
8                 picture "gfx/table1"
9                 pos     '150 0'
10                 size    '700 600'
11         }
12 Item Layout Options
13 {
14         direction '20 0'
15
16         Item Arrangement Menu
17         {
18                 direction '0 10'
19
20                 Derive TextButton Player
21                 {
22                         normal          "Player"
23
24                         init            Nex_Action_JumpToPage
25                         target          "Panel::Player"
26                 }
27                 Derive TextButton Controls
28                 {
29                         normal          "Controls"
30
31                         init            Nex_Action_JumpToPage
32                         target          "Panel::KeyControl"
33                 }
34                 Derive TextButton Audio
35                 {
36                         normal          "Audio"
37
38                         init            Nex_Action_JumpToPage
39                         target          "Panel::Sound"
40                 }
41                 Derive TextButton Video
42                 {
43                         normal          "Video"
44
45                         init            Nex_Action_JumpToPage
46                         target          "Panel::Video"
47                 }
48                 Derive TextButton ColorControl
49                 {
50                         normal          "Color Control"
51
52                         init            Nex_Action_JumpToPage
53                         target          "Panel::ColorControl"
54                 }
55                 Derive TextButton Effects
56                 {
57                         normal          "Effects"
58
59                         init            Nex_Action_JumpToPage
60                         target          "Panel::Effects"
61                 }
62                 Derive TextButton Input
63                 {
64                         normal          "Input"
65
66                         init            Nex_Action_JumpToPage
67                         target          "Panel::Input"
68                 }
69                 Derive TextButton Server
70                 {
71                         normal          "Gameplay"
72
73                         init            Nex_Action_JumpToPage
74                         target          "Panel::Server"
75                 }
76                 Derive TextButton Weapon
77                 {
78                         normal          "Weapons"
79
80                         init            Nex_Action_JumpToPage
81                         target          "Panel::Weapon"
82                 }
83                 Derive TextButton Weapon2
84                 {
85                         normal          "More Weapons"
86
87                         init            Nex_Action_JumpToPage
88                         target          "Panel::Weapon2"
89                 }
90         }
91         Item EventWindow Panel
92         {
93                 size    '700 800'
94                 reinit  Nex_Action_MakeFirstVisible
95
96                 #include "menu/options/sound.menu"
97                 #include "menu/options/video.menu"
98                 #include "menu/options/key.menu"
99                 #include "menu/options/player.menu"
100                 #include "menu/options/color.menu"
101                 #include "menu/options/effects.menu"
102                 #include "menu/options/Input.menu"
103                 #include "menu/options/server.menu"
104                 #include "menu/options/weapon.menu"
105                 #include "menu/options/weapon2.menu"
106         }
107 }
108 }