Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto_vs05/media/overlay/Example-CubeMapping.overlay @ 288

Last change on this file since 288 was 288, checked in by rgrieder, 16 years ago
  • added Chai's HUD overlay
  • abstracted debugOverlay —> TestOverlay
  • added overlay media files
  • cleaned up RunManager a little bit
  • omitted using ogre's Singleton template
  • added useful CMake structure
  • some more things
File size: 2.9 KB
Line 
1Example/CubeMappingOverlay
2{
3        zorder 500
4        // Stats block
5        container BorderPanel(Core/CubeMappingPanel)
6        {
7                metrics_mode pixels
8                vert_align top
9                left 5
10                top 5
11                width 250
12                height 130
13                material Core/StatsBlockCenter
14                border_size 1 1 1 1
15                border_material Core/StatsBlockBorder
16                border_topleft_uv     0.0000 1.0000 0.0039 0.9961
17                border_top_uv         0.0039 1.0000 0.9961 0.9961
18                border_topright_uv    0.9961 1.0000 1.0000 0.9961
19                border_left_uv        0.0000 0.9961 0.0039 0.0039
20                border_right_uv       0.9961 0.9961 1.0000 0.0039
21                border_bottomleft_uv  0.0000 0.0039 0.0039 0.0000
22                border_bottom_uv      0.0039 0.0039 0.9961 0.0000
23                border_bottomright_uv 0.9961 0.0039 1.0000 0.0000
24
25                element TextArea(Example/CubeMapping/Displacement)
26                {
27                        metrics_mode pixels
28                        left 5
29                        top 5
30                        width 90
31                        height 30
32                        font_name BlueHighway
33                        char_height 16
34                        caption [1/2] Displacement:
35                        colour_top 0.5 0.7 0.5
36                        colour_bottom 0.3 0.5 0.3
37                }
38
39                element TextArea(Example/CubeMapping/Density)
40                {
41                        metrics_mode pixels
42                        left 5
43                        top 20
44                        width 90
45                        height 30
46                        font_name BlueHighway
47                        char_height 16
48                        caption [3/4] Noise density:
49                        colour_top 0.5 0.7 0.5
50                        colour_bottom 0.3 0.5 0.3
51                }
52
53                element TextArea(Example/CubeMapping/TimeDensity)
54                {
55                        metrics_mode pixels
56                        left 5
57                        top 35
58                        width 90
59                        height 30
60                        font_name BlueHighway
61                        char_height 16
62                        caption [5/6] Time density:
63                        colour_top 0.5 0.7 0.5
64                        colour_bottom 0.3 0.5 0.3
65                }
66
67
68                element TextArea(Example/CubeMapping/Noise)
69                {
70                        metrics_mode pixels
71                        left 5
72                        top 50
73                        width 90
74                        height 30
75                        font_name BlueHighway
76                        char_height 16
77                        caption [N] Noise: _not_set_
78                        colour_top 0.5 0.7 0.5
79                        colour_bottom 0.3 0.5 0.3
80                }
81
82                element TextArea(Example/CubeMapping/Material)
83                {
84                        metrics_mode pixels
85                        left 5
86                        top 65
87                        width 90
88                        height 30
89                        font_name BlueHighway
90                        char_height 16
91                        caption [M] Material: *UNIMPLEMENTED*
92                        colour_top 0.5 0.7 0.5
93                        colour_bottom 0.3 0.5 0.3
94                }
95
96                element TextArea(Example/CubeMapping/Object)
97                {
98                        metrics_mode pixels
99                        left 5
100                        top 80
101                        width 90
102                        height 30
103                        font_name BlueHighway
104                        char_height 16
105                        caption [O] Object:
106                        colour_top 0.5 0.7 0.5
107                        colour_bottom 0.3 0.5 0.3
108                }
109
110                element TextArea(Example/CubeMapping/CubeMap)
111                {
112                        metrics_mode pixels
113                        left 5
114                        top 95
115                        width 90
116                        height 30
117                        font_name BlueHighway
118                        char_height 16
119                        caption [C] CubeMap:
120                        colour_top 0.5 0.7 0.5
121                        colour_bottom 0.3 0.5 0.3
122                }
123               
124                element TextArea(Example/CubeMapping/Random)
125                {
126                        metrics_mode pixels
127                        left 5
128                        top 110
129                        width 90
130                        height 30
131                        font_name BlueHighway
132                        char_height 16
133                        caption [SPACE] Go random!
134                        colour_top 0.5 0.7 0.5
135                        colour_bottom 0.3 0.5 0.3
136                }
137
138        }
139}
Note: See TracBrowser for help on using the repository browser.