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_invisible.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_invisible.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> |
---|