Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 591 was 591, checked in by landauf, 16 years ago

asteroids are now models (here comes orxonox' next supermodel!)

File size: 2.2 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
13  <!-- <audio>
14                <ambient>
15                        <ogg src="allgorythm-lift_up" />
16                        <ogg src="allgorythm-resonance_blaster" />
17                        <ogg src="luke_grey_-_hypermode" />
18                        <ogg src="task_horizon_-_menu1" />
19                        <ogg src="tha_silent_partner_-_void" />
20                </ambient>
21  </audio> -->
22
23  <!-- Keep a minimum distance of >100 to the object, otherwise the camara thinks it's in the object -->
24  <!-- the value has to negative, as we want the camara behind the object -->
25  <world>
26    <SceneNode name="OgreHeadNode" pos="0,0,0" />
27    <Camera name="Camera" pos="0,50,-150" lookat="0,20,0" node="OgreHeadNode" />
28    <Ambient colourvalue="1,1,1" />
29    <Skybox src="Orxonox/StarfieldSkyBox" />
30
31    <SceneNode name="ShipNode" pos="0,0,0" node="OgreHeadNode" scale="10,10,10" yaw="-90" pitch="-90" />
32    <BaseEntity name="TheShip" src="assf2.mesh" node="ShipNode" />
33
34    <SceneNode name="ShipNode2" pos="200,0,500" scale="10,10,10" yaw="-90" pitch="-90" />
35    <BaseEntity name="TheShip2" src="assf2.mesh" node="ShipNode2" />
36
37    <SceneNode name="ShipNode3" pos="-200,0,500" scale="10,10,10" yaw="-90" pitch="-90" />
38    <BaseEntity name="TheShip3" src="assf2.mesh" node="ShipNode3" />
39
40    <Model position="0,2000,0" scale="40" mesh="ast1.mesh" />
41    <Model position="2000,0,0" scale="20" mesh="ast2.mesh" />
42    <Model position="0,0,2000" scale="20" mesh="ast3.mesh" />
43    <Model position="0,-2000,0" scale="20" mesh="ast4.mesh" />
44    <Model position="-2000,0,0" scale="20" mesh="ast5.mesh" />
45    <Model position="0,0,-2000" scale="20" mesh="ast6.mesh" />
46    <Model position="1000,1500,0" scale="50" mesh="ast1.mesh" />
47
48  </world>
49
50  <!-- Unused at the moment -->
51  <SpaceshipSteeringObject node="OgreHeadNode" forward="500" rotateupdown="200" rotaterightleft="200" looprightleft="200" />
52
53  <scripts>
54    <script file="intro.lua" />
55  </scripts>
56</orxonoxworld>
Note: See TracBrowser for help on using the repository browser.