Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/data/levels/pickup_pps_invi.oxw @ 6712

Last change on this file since 6712 was 6712, checked in by dafrick, 14 years ago

Merged pickup_representation_templates into one.
Merged pickups.oxi into one.
Adjusted pickup.oxw to showcase all currently existing (and working) pickups.

File size: 1.3 KB
Line 
1<?lua
2  include("stats.oxo")
3  include("hudtemplates3.oxo")
4?>
5
6<?lua
7  include("templates/spaceship_assff.oxt")
8  include("templates/spaceship_pirate.oxt")
9  include("templates/pickup_representation_templates.oxt")
10?>
11
12<Level
13 name         = "Sample"
14 description  = "Just a few tests"
15>
16  <Scene
17    ambientlight = "0.8, 0.8, 0.8"
18    skybox       = "Orxonox/Starbox"
19  >
20
21<?lua
22  include("includes/pickups.oxi")
23?>
24
25    <PickupSpawner position="-75,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10">
26        <pickup>
27            <InvisiblePickup template=smallinvisiblepickup />
28        </pickup>
29    </PickupSpawner>
30
31    <PickupSpawner position="-50,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10">
32        <pickup>
33            <InvisiblePickup template=mediuminvisiblepickup />
34        </pickup>
35    </PickupSpawner>
36
37    <PickupSpawner position="-25,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10">
38        <pickup>
39            <InvisiblePickup template=hugeinvisiblepickup />
40        </pickup>
41    </PickupSpawner>
42
43    <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" />
44    <SpawnPoint position="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff />
45  </Scene>
46</Level>
Note: See TracBrowser for help on using the repository browser.