| 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,-70,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 | |
|---|
| 39 | <!-- ------------------Boden----------------- --> |
|---|
| 40 | <collisionShapes> |
|---|
| 41 | <BoxCollisionShape position="0,50,0" halfExtents="5000,5000,5000" /> |
|---|
| 42 | </collisionShapes> --> |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | <!-- ------------------obere Begrenzung----------------- --> |
|---|
| 46 | <collisionShapes> |
|---|
| 47 | <BoxCollisionShape position="0,70,0" halfExtents="5000,10,5000" /> |
|---|
| 48 | </collisionShapes> |
|---|
| 49 | </StaticEntity> |
|---|
| 50 | |
|---|
| 51 | <!-- -----------------------Zylinder---------------------------- --> |
|---|
| 52 | <StaticEntity position="0,0,0" direction="0,0,0" collisionType=static mass=100000 friction=0.01 > |
|---|
| 53 | <attached> |
|---|
| 54 | <Model position="1000,5100,1000" mesh="cylinder.mesh" scale3D="1000,1000,1000" /> |
|---|
| 55 | </attached> |
|---|
| 56 | |
|---|
| 57 | </StaticEntity> |
|---|
| 58 | |
|---|
| 59 | |
|---|
| 60 | <SpawnPoint team=0 position="0,5050,0" lookat="0,5070,5070" spawnclass=SpaceShip pawndesign=spaceshipRace /> |
|---|
| 61 | |
|---|
| 62 | </Scene> |
|---|
| 63 | </Level> |
|---|
| 64 | |
|---|