Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

update levelfile

File size: 1.7 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    </attached>
41    <collisionShapes>
42      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="0,0,0" halfExtents="300, 2, 30" />
43      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="-300,0,0" halfExtents="300, 2, 30" />
44    </collisionShapes>
45  </StaticEntity>
46
47  <StaticEntity position="0,-10,0" collisionType="static">
48    <attached>
49      <Model position="0, 0,0" yaw="90" pitch="-90" roll="0" scale3D="10000,10000,1" mesh="CubeGround.mesh" />     
50    </attached>
51    <collisionShapes>
52      <BoxCollisionShape yaw="90" pitch="-90" roll="0" position="0,0,0" halfExtents="10000, 10000, 1" />
53    </collisionShapes>
54  </StaticEntity>
55
56
57   
58    <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"/>
59    <SpawnPoint team=0 position="0,0,0" lookat="10,0,0" spawnclass=SpaceShip pawndesign=spaceshippirate />
60   
61  </Scene>
62</Level>
63
Note: See TracBrowser for help on using the repository browser.