Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Presentation_FS19/data/levels/orxoblox.oxw @ 12411

Last change on this file since 12411 was 12411, checked in by wiesep, 5 years ago

Merged OrxoBlox_FS19

File size: 2.7 KB
Line 
1<LevelInfo
2 name = "OrxoBlox"
3 description = "A clone version of the BBTAN game."
4 tags = "minigame"
5 screenshot = "emptylevel.png"
6/>
7
8<?lua
9  include("stats.oxo")
10  include("OrxoBloxHUD.oxo")
11  include("templates/lodInformation.oxt")
12?>
13
14<?lua
15  include("templates/spaceshipAssff2.oxt")
16  include("templates/spaceshipPirate.oxt")
17  include("templates/spaceshipOrxoBlox.oxt")
18  include("templates/spaceshipEscort.oxt")
19?>
20
21<Template name=OrxoBloxball>
22  <OrxoBloxBall
23   defScoreSound = "sounds/PlayerWinScore_cut.ogg"
24   defBatSound = "sounds/Button.ogg"
25   defBoundarySound = "sounds/Button.ogg">
26    <attached>
27      <Model mesh="sphere.mesh" scale=2 />
28      <!--Billboard scale=0.2 colour="1.0, 1.0, 0.5" material="Examples/Flare" /-->
29      <Backlight scale=0.2 colour="1.0, 1.0, 0.5" width=7 length=500 lifetime=0.3 elements=20 trailmaterial="Trail/backlighttrail" material="Examples/Flare" />
30      <Light type=point diffuse="1.0, 1.0, 0.5" specular="1.0, 1.0, 0.5" attenuation="1200, 1.0, 0.0035, 0.00005" />
31      <ParticleSpawner name=hiteffect position="0,0,0" source="Orxonox/sparks2" lifetime=0.01 autostart=0 mainstate=spawn />
32    </attached>
33    <eventlisteners>
34      <EventTarget target=hiteffect />
35    </eventlisteners>
36  </OrxoBloxBall>
37</Template>
38 
39 
40  <Template name=OrxoBloxwall>
41    <OrxoBloxWall>
42    </OrxoBloxWall>
43  </Template>
44
45   
46<Level
47  plugins = "OrxoBlox"
48 gametype = "OrxoBlox"
49>
50
51 <templates>
52    <Template link=lodtemplate_default />
53  </templates>
54  <?lua include("includes/notifications.oxi") ?>
55
56
57  <Scene
58   ambientlight = "0.5, 0.5, 0.5"
59   skybox       = "Orxonox/skyBoxBasic"
60  >
61
62    <!-- <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/> -->
63    <Light type=directional position="-100, 10000, -700" direction="0.2, -1, 0" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0" />
64    <SpawnPoint team=0 position="0,-4.5,49" lookat="-10000,0,0" spawnclass=SpaceShip pawndesign=spaceshipOrxoBlox/>
65
66    <!--SpawnPoint team=0 position="0,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort /--->
67
68    <!--<Model mesh="axes.mesh" scale=10 position="0,0,0" /> -->
69
70
71    <OrxoBloxCenterpoint name=OrxoBloxcenter dimension="90,100" balltemplate=OrxoBloxball  ballspeed=200 ballaccfactor=1.0  StoneTemplate=OrxoBloxstone WallTemplate=OrxoBloxwall >
72       
73      <attached>
74            <!-- Balken die das Spielfeld begrenzen. -->
75          <Model position="0,0,-49" mesh="cube.mesh" scale3D="45,1,1" />
76          <Model position="46,0,0" mesh="cube.mesh" scale3D="1,1,50"/>
77          <Model position="-46,0,0" mesh="cube.mesh" scale3D="1,1,50"/>
78      </attached>
79    </OrxoBloxCenterpoint>
80     
81 
82
83  </Scene>
84</Level>
85
Note: See TracBrowser for help on using the repository browser.