Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/bin/levels/sample.oxw @ 582

Last change on this file since 582 was 582, checked in by nicolape, 16 years ago

Added background sound from old orxonox

File size: 2.1 KB
Line 
1<?xml version="1.0"?>
2<orxonoxworld name="Orxonox sample level" image="textures/menu/moonstation_512x512.jpg">
3  <description>
4    This is an orxonox sample level.
5  </description>
6
7  <loading>
8    <background color="000000" image="textures/load_screens/ambush.png" />
9    <bar top="200" left="50" width="300" height="20" image="textures/load_screens/ambush-loadbar.png" />
10  </loading>
11
12  <audio>
13                <ambient>
14                        <ogg src="allgorythm-lift_up" />
15                        <ogg src="allgorythm-resonance_blaster" />
16                        <ogg src="luke_grey_-_hypermode" />
17                        <ogg src="task_horizon_-_menu1" />
18                        <ogg src="tha_silent_partner_-_void" />
19                </ambient>
20  </audio>
21
22  <!-- Keep a minimum distance of >100 to the object, otherwise the camara thinks it's in the object -->
23  <!-- the value has to negative, as we want the camara behind the object -->
24  <world>
25    <SceneNode name="OgreHeadNode" pos="0,0,0" />
26    <Camera name="Camera" pos="0,0,-150" lookat="0,0,0" node="OgreHeadNode" />
27    <Ambient colourvalue="1,1,1" />
28    <Skybox src="Orxonox/StarfieldSkyBox" />
29
30    <SceneNode name="ShipNode" pos="0,0,0" node="OgreHeadNode" scale="10,10,10" yaw="-90" pitch="-90" />
31    <BaseEntity name="TheShip" src="assf2.mesh" node="ShipNode" />
32
33    <SceneNode name="node1" pos="0,200,0" />
34    <Entity name="asteroid1" src="ast1.mesh" node="node1" />
35
36    <SceneNode name="node2" pos="200,0,0" />
37    <Entity name="asteroid2" src="ast2.mesh" node="node2" />
38
39    <SceneNode name="node3" pos="0,0,200" />
40    <Entity name="aststeroid3" src="ast3.mesh" node="node3" />
41
42    <SceneNode name="node4" pos="0,-200,0" />
43    <Entity name="asteroid4" src="ast4.mesh" node="node4" />
44
45    <SceneNode name="node5" pos="-200,0,0" />
46    <Entity name="asteroid5" src="ast5.mesh" node="node5" />
47
48    <SceneNode name="node6" pos="0,0,-200" />
49    <Entity name="asteroid6" src="ast6.mesh" node="node6" />
50  </world>
51
52  <!-- Unused at the moment -->
53  <SpaceshipSteeringObject node="OgreHeadNode" forward="500" rotateupdown="200" rotaterightleft="200" looprightleft="200" />
54
55  <scripts>
56    <script file="intro.lua" />
57  </scripts>
58</orxonoxworld>
Note: See TracBrowser for help on using the repository browser.