Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentationFS15/data/levels/presentationFS15.oxw @ 10498

Last change on this file since 10498 was 10498, checked in by maxima, 9 years ago

Pres level modified

File size: 1.7 KB
Line 
1<LevelInfo
2 name = "Presentation FS15"
3 description = "Level for Presentation."
4 tags = "presentation"
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/spaceshipRing.oxt")
16  include("templates/spaceshipFS15.oxt")
17
18?>
19
20<Level>
21  <templates>
22    <Template link=lodtemplate_default />
23  </templates>
24  <?lua include("includes/notifications.oxi") ?>
25
26  <Scene
27    ambientlight = "0.8, 0.8, 0.8"
28    skybox       = "Orxonox/Starbox"
29  >
30
31    <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"/>
32    <SpawnPoint team=0 position="-2000,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipfs15/>
33   
34   
35    <SpaceShip position="0,500,500" lookat="0,1000,0" >
36      <attached>
37        <DistanceTriggerBeacon name="bcnDestroyer" />
38        <DockingTarget name="destroyer" />
39      </attached>
40      <templates>
41        <Template link=spaceshipring />
42      </templates>
43    </SpaceShip>
44
45    <!-- Docking  -->
46    <Dock position="-1000,0,0" roll=0 yaw=0 >
47      <attached>
48        <Billboard position="0,0,0" material="Flares/ringflare2" colour="0.2,0.4,0.8" scale=1 />
49        <DistanceTrigger position="0,0,0" distance="200" target="Pawn" beaconMode="exclude" targetname="bcnDestroyer" name="dockMe"/>
50      </attached>
51      <animations>
52        <MoveToDockingTarget target="destroyer" />
53      </animations>
54      <effects>
55        <DockToShip target="destroyer" />
56      </effects>
57      <events>
58        <execute>
59          <EventListener event="dockMe" />
60        </execute>
61      </events>
62    </Dock>
63  </Scene>
64</Level>
65
Note: See TracBrowser for help on using the repository browser.