Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/planetLevelHS15/data/levels/betterearth.oxw @ 10788

Last change on this file since 10788 was 10788, checked in by hzuellig, 8 years ago

skyscrapers and stuff

File size: 2.5 KB
Line 
1<LevelInfo
2 name = "Better Earth Demonstration"
3 description = "1:100 Scale Model of Earth with Gravity"
4 tags = "showcase"
5 screenshot = "earthdemonstration.png"
6/>
7
8<?lua
9  include("stats.oxo")
10  include("HUDTemplates3.oxo")
11  include("templates/lodInformation.oxt")
12  include("templates/spaceshipHXY.oxt")
13?>
14
15<Level>
16  <templates>
17    <Template link="lodtemplate_default" />
18  </templates>
19  <?lua include("includes/notifications.oxi") ?>
20
21  <Template name=PortalDefault>
22      <PortalEndPoint>
23          <attached>
24              <Billboard material="Portals/Default" />
25          </attached>
26      </PortalEndPoint>
27  </Template>
28
29  <Scene
30    ambientlight = "0.8, 0.8, 0.8"
31    skybox       = "Orxonox/skyboxempty"
32  >
33    <WorldAmbientSound
34      source="Earth.ogg"
35      looping="true"
36      playOnLoad="true"
37    />
38
39    <Light
40      type="directional"
41      position="-500000,-500000,0"
42      direction="0.253, 0.593, -0.765"
43      diffuse="1.0, 0.9, 0.9, 1.0"
44      specular="1.0, 0.9, 0.9, 1.0"
45    />
46
47
48
49    <SpawnPoint
50      position="100,0,0"
51      lookat="0,0,0"
52      spawnclass="SpaceShip"
53      pawndesign="spaceshipHXY"
54    />
55    <PortalEndPoint position="70500,100,0" id="1" distance="40" target="MobileEntity" design="PortalDefault"/>
56
57    <!-- This is a model of Earth: mass=EarthMass/1000 and radius=EarthRadius[km]*10 -->
58   
59
60    <!-- This is a model of our Moon: mass=MoonMass/1000 and radius=MoonRadius[km]*10 and position=DistanceFromEarth[km]*10 -->
61    <Planet
62      position="3625700,0,0"
63      scale="17370"
64      collisionType="dynamic"
65      linearDamping="0.8"
66      angularDamping="0"
67      mass="7.36e19"
68      pitch="0"
69      mesh="planets/moon.mesh"
70      atmosphere="atmosphere1"
71      rotationaxis="0,1,0"
72      rotationrate="010"
73      atmospheresize="80.0f"
74      imagesize="1024.0f"
75      collisiondamage = 2
76      enablecollisiondamage = true
77    >
78      <attached>
79        <ForceField position="0,0,0" mode="newtonianGravity" diameter="40000" massDiameter="34740" mass="7.36e19" />
80      </attached>
81      <collisionShapes>
82        <SphereCollisionShape radius="17370" position="0,0,0" />
83      </collisionShapes>
84    </Planet>
85    <PortalEndPoint position="3603330,100,0" id="2" distance="40" target="MobileEntity" design="PortalDefault"/>
86
87        <StaticEntity position="0,0,0" scale="100">
88                <attached>
89                        <Model  mesh="Glasstower1.mesh" />
90                </attached>
91        </StaticEntity>
92    <!-- Create portals from Earth to the Moon -->
93    <PortalLink fromID="1" toID="2" />
94    <PortalLink fromID="2" toID="1" />
95  </Scene>
96</Level>
Note: See TracBrowser for help on using the repository browser.