Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2011/data/levels/presentationHS11.oxw @ 9006

Last change on this file since 9006 was 9006, checked in by jo, 13 years ago

Repairing setbotlevel command. Start of a presentation level.

File size: 1.2 KB
Line 
1<LevelInfo
2 name = "Presentation HS 2011"
3 description = "Oxonox Proudly Presents New Features From HS 2011"
4 tags = "presentation"
5/>
6
7<?lua
8  include("stats.oxo")
9  include("HUDTemplates3.oxo")
10  include("templates/lodInformation.oxt")
11?>
12
13<?lua
14  include("templates/spaceshipAssff.oxt")
15  include("templates/spaceshipPirate.oxt")
16?>
17
18<Level>
19  <templates>
20    <Template link=lodtemplate_default />
21  </templates>
22  <?lua include("includes/notifications.oxi") ?>
23
24  <Scene
25    ambientlight = "0.8, 0.8, 0.8"
26    skybox       = "Orxonox/skyBoxMoreNebula"
27  >
28
29    <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"/>
30    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff />
31
32
33<!-- Generate asteroid field and asteroid belt -->
34<!-- asteroidBelt(centerX, centerY, centerZ, yaw, pitch, segments, minSize, maxSize, radius0, radius1, count, fog) -->
35    <?lua
36        dofile("includes/asteroidField.lua")
37        asteroidBelt(20000, 0, 13000, -48, -34, 70, 100, 200, 22000, 20000, 500, 1)
38
39    ?>
40
41
42
43
44<!--            asteroidBelt(0, 0, 0, 0, 0, 70, 100, 200, 22000, 20000, 500, 1) -->
45  </Scene>
46</Level>
47
Note: See TracBrowser for help on using the repository browser.