]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/credits.menu
Change 'cd volume' to 'music volume'
[divverent/nexuiz.git] / scmenu / credits.menu
1 // Property of Alientrap/AK
2 //
3 // credits.menu
4 Item Window CreditsWnd
5 {
6         pos     '300 300'
7         size    '400 400'
8         flag    [FlagHidden]
9
10         Derive Rect Background
11         {
12                 color           '0.1 0.1 0.1'
13                 drawFlag        [DrawFlagModulate]
14                 flag            [FlagSealOffMouse]
15
16                 Derive Rect Layer
17                 {
18                         color           '0.3 0.3 0.3'
19                         drawFlag        [DrawFlagAdditive]
20                 }
21         }
22         Item Layout Layout
23         {
24                 origin          '200 0'
25                 direction       [Nex_DefaultVertDirection]
26                 flag            [FlagEmbedded]
27                 alignment       [AlignCenter]
28
29                 Item FloatingArea Title
30                 {
31                         size            '400 13'
32                         target          "##up up"
33                         Derive Rect Background
34                         {
35                                 color           '0.5 0.5 0.5'
36                         }
37                         Derive TextButton Caption
38                         {
39                                 size            '400 11'
40                                 alignment       [AlignCenter]
41                                 normal          "Credits"
42                                 link            "##up"
43                         }
44                 }
45                 Item Arrangement Items
46                 {
47                         direction       [Nex_DefaultVertDirection]
48                         key             Nex_Credits_Key
49                         alignment       [AlignCenter]
50
51                         Item Window Scroller
52                         {
53                                 size            '400 350'
54
55                                 Item Task_Job Job
56                                 {
57                                         direction       '0 50'
58                                         reinit          Nex_Credits_SetSizeX
59                                         update          Nex_Credits_Scroll
60                                 }
61
62                                 Derive Nex_Credits Credits
63                                 {
64                                         alignment       [AlignCenter]
65                                         target          "betacredits.txt"
66                                 }
67                         }
68
69                         Derive TextButton Close
70                         {
71                                 normal  "Close"
72                                 action  Nex_Credits_Toggle
73                         }
74                 }
75         }
76 }