Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/pickupsFS14/data/levels/emptyLevel.oxw @ 10212

Last change on this file since 10212 was 10184, checked in by fvultier, 10 years ago

Es wird nun angezeigt, wie lange ein item noch aktiv ist.

  • Property svn:eol-style set to native
File size: 1.9 KB
RevLine 
[7648]1<LevelInfo
2 name = "Empty level"
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")
[5433]12?>
13
14<?lua
[8706]15  include("templates/spaceshipAssff2.oxt")
[7679]16  include("templates/spaceshipPirate.oxt")
[9415]17  include("templates/spaceshipEscort.oxt")
[5433]18?>
19
[9016]20<Level>
[7163]21  <templates>
22    <Template link=lodtemplate_default />
23  </templates>
[8706]24  <?lua include("includes/notifications.oxi") ?>
[7163]25
[10184]26        <NotificationQueueCEGUI
27    name="narrative"
28    targets="simpleNotification"
29    size=3
30    displayTime=3.9
31    position="0.2, 0, 0.1, 0"
32    fontSize="23"
33    fontColor="0.3, 1, 0.2, 0.8"
34    alignment="HorzCentred"
35    displaySize="0.6, 0, 0, 0"
36    />
[5433]37  <Scene
[5499]38    ambientlight = "0.8, 0.8, 0.8"
[5433]39    skybox       = "Orxonox/Starbox"
40  >
[7163]41
42    <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]43    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
[10184]44
45        <Pawn health=30 position="0,0,0" direction="0,-1,0" collisionType=dynamic mass=100000 name=box radarname = "Box 4" >
46        <events>
47          <visibility>
48            <EventListener event="flying4" />
49          </visibility>
50        </events>
51        <attached>
52            <Model position="0,0,0" mesh="crate.mesh" scale3D="3,3,3" />
53        </attached>
54        <collisionShapes>
55            <BoxCollisionShape position="0,0,0" halfExtents="15,15,15" />
56        </collisionShapes>
57        <controller>
58            <WaypointController team=1>
59            </WaypointController>
60        </controller>
61    </Pawn>
62
63
64
65<SimpleNotification message="Right click on the next target." broadcast="true">
66        <events>
67            <trigger>
68                <EventListener event="box" />
69            </trigger>
70        </events>
71    </SimpleNotification>
[6524]72   
[5433]73  </Scene>
74</Level>
[7163]75
Note: See TracBrowser for help on using the repository browser.