[Orxonox-commit 538] r2186 - media/levels
bknecht at orxonox.net
bknecht at orxonox.net
Wed May 27 00:15:55 CEST 2009
Author: bknecht
Date: 2009-05-27 00:15:55 +0200 (Wed, 27 May 2009)
New Revision: 2186
Added:
media/levels/presentation09.oxw
Log:
added presentation level for this Conventionsvn add levels/presentation09.oxw
Added: media/levels/presentation09.oxw
===================================================================
--- media/levels/presentation09.oxw (rev 0)
+++ media/levels/presentation09.oxw 2009-05-26 22:15:55 UTC (rev 2186)
@@ -0,0 +1,52 @@
+<?lua
+ include("overlay/hudtemplates3.oxo")
+ include("overlay/stats.oxo")
+ include("levels/templates/spaceship_assff.oxt")
+ include("levels/templates/spaceship_H2.oxt")
+?>
+
+<Level
+ name = "Presentation09"
+ description = "presentation level for Orxonox Convention X"
+
+>
+ <Scene
+ ambientlight = "0.5, 0.5, 0.5"
+ skybox = "Orxonox/skypanoramagen1"
+ >
+ <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" />
+
+
+<SpawnPoint position="<?lua print(math.sin(1.5) *40000) ?>,<?lua print(math.cos(1.5) *40000) ?>,<?lua print(500) ?>" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff />
+
+
+<?lua
+max = 20
+for i = 1, max, 1
+do
+ x = math.sin(i/max*6)*40000
+ y = math.cos(i/max*6)*40000
+ z = i*100
+ ?>
+<?lua
+for k = 1, 25, 1
+do
+j = math.random()
+?>
+
+ <MovableEntity position="<?lua print(x + math.random() * 10000-2500) ?>,<?lua print(y + math.random() * 5000-2500) ?>,<?lua print(z + math.random() * 1000-500) ?>" <?lua if i == 5 then ?> collisionType=dynamic linearDamping=0.8 angularDamping=0 mass=<?lua print(j * 50) ?> <?lua end ?> scale=<?lua print(j * 5) ?> rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>">
+ <attached>
+ <Model position="0,0,0" scale=<?lua print(j * 10) ?> mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" />
+ </attached>
+ <?lua if i == 5 then ?><collisionShapes>
+ <SphereCollisionShape radius="<?lua print(j * 70) ?>" />
+ </collisionShapes> <?lua end ?>
+ </MovableEntity>
+<?lua
+end
+?>
+<?lua end ?>
+ <Planet position="0,0,0" scale=10000 pitch=-90 mesh="iceplanet.mesh" atmosphere="atmosphere1" rotationaxis="1,1,0" rotationrate="1" atmospheresize=224.0f imagesize=1024.0f />
+
+ </Scene>
+</Level>
More information about the Orxonox-commit
mailing list