Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/surfaceRace/data/levels/surfaceRace.oxw @ 9056

Last change on this file since 9056 was 9056, checked in by laumerf, 12 years ago

Ebene eingefuegt

File size: 1.3 KB
Line 
1<LevelInfo
2 name = "Surface Race"
3 description = "Race on a surface of a planet"
4 tags = "Race"
5 screenshot = "emptylevel.png"
6/>
7
8<?lua
9  include("HUDTemplates3.oxo")
10  include("stats.oxo")
11  include("templates/spaceshipRace.oxt")
12  include("templates/lodInformation.oxt")
13
14
15?>
16
17<Level>
18  <templates>
19    <Template link=lodtemplate_default />
20  </templates>
21  <?lua include("includes/notifications.oxi") ?>
22
23  <Scene
24    ambientlight = "2.0, 2.0, 2.0"
25    skybox       = "Orxonox/skyBoxClouds"
26    gravity      = "0,-150,0"
27    negativeWorldRange = "-100000, -100000, -100000"
28    positiveWorldRange = " 100000,  100000,  100000"
29    hasPhysics   = true
30  >
31
32  <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"/>
33
34  <StaticEntity position="0,0,0" direction="0,0,0" collisionType=static mass=100000 friction=0.01 >
35      <attached>
36        <Model position="0,0,0" mesh="testcube.mesh" scale3D="5000,5000,5000" />
37      </attached>
38      <collisionShapes>
39        <BoxCollisionShape position="0,50,0" halfExtents="5000,5000,5000" />
40      </collisionShapes>
41  </StaticEntity>
42
43    <SpawnPoint team=0 position="0,5050,0" lookat="0,5070,5070" spawnclass=SpaceShip pawndesign=spaceshipRace />
44   
45  </Scene>
46</Level>
47
Note: See TracBrowser for help on using the repository browser.