[6531] | 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") |
---|
[6712] | 9 | include("templates/pickup_representation_templates.oxt") |
---|
[6531] | 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 |
---|
[6712] | 22 | include("includes/pickups.oxi") |
---|
[6531] | 23 | ?> |
---|
| 24 | |
---|
[6641] | 25 | <PickupSpawner position="-75,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10"> |
---|
[6531] | 26 | <pickup> |
---|
[6689] | 27 | <InvisiblePickup template=smallinvisiblepickup /> |
---|
[6531] | 28 | </pickup> |
---|
| 29 | </PickupSpawner> |
---|
| 30 | |
---|
[6689] | 31 | <PickupSpawner position="-50,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10"> |
---|
| 32 | <pickup> |
---|
| 33 | <InvisiblePickup template=mediuminvisiblepickup /> |
---|
| 34 | </pickup> |
---|
| 35 | </PickupSpawner> |
---|
[6531] | 36 | |
---|
[6689] | 37 | <PickupSpawner position="-25,0,-100" triggerDistance="10" respawnTime="5" maxSpawnedItems="10"> |
---|
| 38 | <pickup> |
---|
| 39 | <InvisiblePickup template=hugeinvisiblepickup /> |
---|
| 40 | </pickup> |
---|
| 41 | </PickupSpawner> |
---|
| 42 | |
---|
[6531] | 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> |
---|