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
RevLine 
[7648]1<LevelInfo
[11357]2 name = "emptyLevel"
[7648]3 description = "A level with absolutely nothing in it."
4 tags = "test"
[9016]5 screenshot = "emptylevel.png"
[7648]6/>
7
[5433]8<?lua
[5654]9  include("stats.oxo")
[7679]10  include("HUDTemplates3.oxo")
11  include("templates/lodInformation.oxt")
[11357]12  include("templates/HeavyCruiser.oxt")
[5433]13?>
14
15<?lua
[9415]16  include("templates/spaceshipEscort.oxt")
[11357]17  include("templates/endurancetest_template.oxt")
[5433]18?>
19
[9016]20<Level>
[7163]21  <templates>
22    <Template link=lodtemplate_default />
23  </templates>
[8706]24  <?lua include("includes/notifications.oxi") ?>
[11377]25 
[7163]26
[5433]27  <Scene
[5499]28    ambientlight = "0.8, 0.8, 0.8"
[5433]29    skybox       = "Orxonox/Starbox"
30  >
[11393]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
[7163]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"/>
[9415]59    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
[11357]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>
[6524]66   
[5433]67  </Scene>
68</Level>
[7163]69
Note: See TracBrowser for help on using the repository browser.