Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/explosionChunksHS15/data/levels/emptyLevel.oxw @ 10752

Last change on this file since 10752 was 10752, checked in by vaydin, 8 years ago

Deleted previously created VaydinExplosion class, created ExplosionPart class

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1<LevelInfo
2 name = "Empty level"
3 description = "A level with absolutely nothing in it."
4 tags = "test"
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/spaceshipAssff.oxt")
16  include("templates/spaceshipEscort.oxt")
17?>
18
19<Level>
20  <templates>
21    <Template link=lodtemplate_default />
22  </templates>
23  <?lua include("includes/notifications.oxi") ?>
24
25  <Scene
26    ambientlight = "0.8, 0.8, 0.8"
27    skybox       = "Orxonox/Starbox"
28  >
29
30    <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"/>
31    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
32
33    <SpaceShip
34        team                = "1"
35        position            = "1000,0,0"
36   explosionchunks        = 60
37        >
38        <templates>
39                      <Template link=spaceshipassff />
40        </templates>
41         
42                   
43    </SpaceShip>
44    <SpaceShip
45        team                = "1"
46        position            = "1000,200,0"
47        >
48        <templates>
49                      <Template link=spaceshipassff />
50                    </templates>
51                    <explosion>
52
53          <ExplosionPart mesh="ship.mesh" effect="Orxonox/smoke7" />
54          <ExplosionPart mesh="ship.mesh" effect="Orxonox/smoke7" />
55
56        </explosion>
57                   
58    </SpaceShip>
59    <SpaceShip
60        team                = "1"
61        position            = "1000,400,0"
62        >
63        <templates>
64                      <Template link=spaceshipassff />
65                    </templates>
66                    <explosion>
67
68          <ExplosionPart mesh="ship.mesh" effect="Orxonox/smoke7" />
69          <ExplosionPart mesh="ship.mesh" effect="Orxonox/smoke7" />
70
71        </explosion>
72                   
73    </SpaceShip>
74   
75  </Scene>
76</Level>
77
Note: See TracBrowser for help on using the repository browser.