Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hoverHS15/data/levels/Hover.oxw @ 10697

Last change on this file since 10697 was 10697, checked in by meierman, 9 years ago

First time with HoverShip

File size: 2.0 KB
Line 
1<LevelInfo
2 name = "Hover level"
3 description = "Level for Minigame Hover"
4 tags = "minigame"
5 screenshot = "emptylevel.png"
6/>
7
8<?lua
9  include("stats.oxo")
10  include("HUDTemplates3.oxo")
11  include("templates/lodInformation.oxt")
12?>
13
14<?lua
15  include("templates/spaceshipPirate.oxt")
16?>
17
18<Level
19plugins = hover
20gametype = Hover
21>
22  <templates>
23    <Template link=lodtemplate_default />
24  </templates>
25  <?lua include("includes/notifications.oxi") ?>
26
27  <Scene
28    ambientlight = "0.8, 0.8, 0.8"
29    skybox       = "Orxonox/Starbox"
30  >
31 
32
33
34 
35
36  <StaticEntity position="200,0,0" collisionType="static">
37    <attached>
38      <Model position="0, 0,0" yaw="90" pitch="-90" roll="0" scale3D="300, 2, 30" mesh="cube_red.mesh" />
39      <Model position="-300, 0,0" yaw="90" pitch="-90" roll="0" scale3D="300, 2, 30" mesh="cube_red.mesh" />     
40      <Model position="-150, 0,150" yaw="90" pitch="-90" roll="0" scale3D="2, 300, 30" mesh="cube_green.mesh" />     
41      <Model position="-150, 0,-150" yaw="90" pitch="-90" roll="0" scale3D="2, 300, 30" mesh="cube_green.mesh" />
42    </attached>
43    <collisionShapes>
44      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="0,0,0" halfExtents="300, 2, 30" />
45      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="-300,0,0" halfExtents="300, 2, 30" />
46    </collisionShapes>
47  </StaticEntity>
48
49  <StaticEntity position="0,-10,0" collisionType="static">
50    <attached>
51      <Model position="0, 0,0" yaw="90" pitch="-90" roll="0" scale3D="10000,10000,1" mesh="CubeGround.mesh" />     
52    </attached>
53    <collisionShapes>
54      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="0,0,0" halfExtents="10000, 10000, 1" />
55    </collisionShapes>
56  </StaticEntity>
57
58
59   
60    <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"/>
61    <SpawnPoint team=0 position="0,0,0" lookat="10,0,0" spawnclass=HoverShip pawndesign=spaceshippirate />
62   
63  </Scene>
64</Level>
65
Note: See TracBrowser for help on using the repository browser.