Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialogue_FS17/data/levels/emptyLevel.oxw @ 11393

Last change on this file since 11393 was 11393, checked in by rrogge, 7 years ago

Singleton funktioniert

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1<LevelInfo
2 name = "emptyLevel"
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  include("templates/HeavyCruiser.oxt")
13?>
14
15<?lua
16  include("templates/spaceshipEscort.oxt")
17  include("templates/endurancetest_template.oxt")
18?>
19
20<Level>
21  <templates>
22    <Template link=lodtemplate_default />
23  </templates>
24  <?lua include("includes/notifications.oxi") ?>
25 
26
27  <Scene
28    ambientlight = "0.8, 0.8, 0.8"
29    skybox       = "Orxonox/Starbox"
30  >
31 <DistanceTrigger name="test" position="0,0,0" target="Pawn" distance=25 stayActive="true"/>
32    <Backlight position="0,0,0" visible=true frequency=0.6 amplitude=3 material="Flares/lensflare" colour="1,0,0"/>
33    <DialogueManager question="Hello World3">
34      <events>
35        <execute>
36           <EventListener event="test" />
37        </execute>
38      </events>
39    </DialogueManager>
40
41    <!--<DialogueManager firstquestion="hello world">
42      <options>
43        <NextQuestion answer="ja" question="question?">
44          <options>
45            <NextQuestion answer="" question="">
46            </NextQuestion>
47          </options>
48        </NextQuestion>
49       <events>
50        <execute>
51           <EventListener event="test" />
52        </execute>
53      </events>
54    </DialogueManager>
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="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
60
61    <ModularSpaceShip velocity= "20,0,0" position="0,0,200" lookat= "0,0,0" health="1000" maxhealth="1000" initialhealth="1000">
62      <templates>
63        <Template link=endurance />
64      </templates>
65    </ModularSpaceShip>
66   
67  </Scene>
68</Level>
69
Note: See TracBrowser for help on using the repository browser.