Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/data/overlays/ponghud.oxo @ 5695

Last change on this file since 5695 was 5695, checked in by rgrieder, 15 years ago

Merged resource2 branch back to trunk.

IMPORTANT NOTE:
Upon this merge you need to specifically call your data directory "data_extern" when checking it out (when you don't provide a name, it will be just called 'trunk').
The new CMake variable is EXTERNAL_DATA_DIRECTORY. DATA_DIRECTORY now points to the one the source part of the repository.
UPDATE YOUR DATA DIRECTORY AS WELL!!!

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1<Template name="PongHUD">
2  <OverlayGroup name="PongHUD" scale = "1, 1">
3    <PongScore
4     position  = "0.05, 0.05"
5     pickpoint = "0.0, 0.0"
6     font      = "ShareTechMono"
7     textsize  = 0.06
8     colour    = "1.0, 1.0, 1.0, 1.0"
9     align     = "left"
10
11     showleftplayer  = true
12     showrightplayer = false
13     showname        = true
14     showscore       = false
15    />
16
17    <PongScore
18     position  = "0.49, 0.05"
19     pickpoint = "0.0, 0.0"
20     font      = "ShareTechMono"
21     textsize  = 0.06
22     colour    = "1.0, 1.0, 1.0, 1.0"
23     align     = "right"
24
25     showleftplayer  = true
26     showrightplayer = false
27     showname        = false
28     showscore       = true
29    />
30
31    <OverlayText
32     position  = "0.505, 0.05"
33     pickpoint = "0.0, 0.0"
34     font      = "ShareTechMono"
35     textsize  = 0.06
36     colour    = "1.0, 1.0, 1.0, 1.0"
37     align     = "center"
38
39     caption   = ":"
40    />
41
42    <PongScore
43     position  = "0.51, 0.05"
44     pickpoint = "0.0, 0.0"
45     font      = "ShareTechMono"
46     textsize  = 0.06
47     colour    = "1.0, 1.0, 1.0, 1.0"
48     align     = "left"
49
50     showleftplayer  = false
51     showrightplayer = true
52     showname        = false
53     showscore       = true
54    />
55
56    <PongScore
57     position  = "0.95, 0.05"
58     pickpoint = "0.0, 0.0"
59     font      = "ShareTechMono"
60     textsize  = 0.06
61     colour    = "1.0, 1.0, 1.0, 1.0"
62     align     = "right"
63
64     showleftplayer  = false
65     showrightplayer = true
66     showname        = true
67     showscore       = false
68    />
69  </OverlayGroup>
70</Template>
Note: See TracBrowser for help on using the repository browser.