Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Code aufgeraeumt

  • Property svn:eol-style set to native
File size: 1.6 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 
32
33    <DistanceTrigger name="test" position="100,0,100" target="Pawn" distance=25 stayActive="true" />
34    <Backlight position="100,0,100" visible=true frequency=0.6 amplitude=3 material="Flares/lensflare" colour="1,0,1"/>
35   
36    <NextQuestion  question="Your question" a1="First answer" a2="Second answer" >
37      <possibleQuestions>
38          <NextQuestion  question="Your next question if a1 was chosen" a1="First answer" a2="Second answer" />
39          <NextQuestion  question="Your next question if a2 was chosen." a1="First answer" a2="Second answer" />
40        </possibleQuestions>
41    <events>
42        <execute>
43           <EventListener event="test" />
44        </execute>
45    </events>
46    </NextQuestion>
47
48    <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"/>
49    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
50
51   
52   
53  </Scene>
54</Level>
55
Note: See TracBrowser for help on using the repository browser.