Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 595 was 595, checked in by landauf, 17 years ago

spaceships are now models too (except the steered one)

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