[10088] | 1 | <LevelInfo |
---|
| 2 | name = "4Dtest" |
---|
| 3 | description = "Test of 4D minigame." |
---|
| 4 | screenshot = "asteroidFieldTest.png" |
---|
| 5 | tags = "test, showcase" |
---|
| 6 | /> |
---|
| 7 | |
---|
| 8 | <?lua |
---|
| 9 | include("stats.oxo") |
---|
| 10 | include("HUDTemplates3.oxo") |
---|
| 11 | include("templates/lodInformation.oxt") |
---|
| 12 | ?> |
---|
| 13 | |
---|
[10096] | 14 | <!-- Templates here |
---|
| 15 | <Template name=mini4Dgamestone> |
---|
| 16 | <Mini4DgameStone> |
---|
| 17 | <attached> |
---|
| 18 | <Model mesh="asteroid_UV.mesh" scale="2" /> |
---|
| 19 | </attached> |
---|
| 20 | </Mini4DgameStone> |
---|
| 21 | </Template> |
---|
[10104] | 22 | |
---|
| 23 | |
---|
| 24 | <BlinkingBillboard position="0,0,0" frequency=0.6 amplitude=0.4 material="Flares/lensflare" colour="0,1,0"> |
---|
| 25 | </BlinkingBillboard> |
---|
[10096] | 26 | --> |
---|
[10090] | 27 | |
---|
[10088] | 28 | <Level |
---|
[10101] | 29 | gametype=Mini4Dgame |
---|
[10088] | 30 | > |
---|
[10096] | 31 | |
---|
[10088] | 32 | <templates> |
---|
| 33 | <Template link=lodtemplate_default /> |
---|
| 34 | </templates> |
---|
| 35 | <?lua include("includes/notifications.oxi") ?> |
---|
| 36 | |
---|
| 37 | <Scene |
---|
| 38 | ambientlight = "0.8, 0.8, 0.8" |
---|
| 39 | skybox = "Orxonox/Starbox" |
---|
| 40 | > |
---|
| 41 | |
---|
[10096] | 42 | <WorldAmbientSound |
---|
| 43 | source="Ganymede.ogg" |
---|
| 44 | looping="true" |
---|
| 45 | playOnLoad="true" |
---|
| 46 | /> |
---|
| 47 | |
---|
[10088] | 48 | <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"/> |
---|
[10096] | 49 | |
---|
| 50 | |
---|
[10115] | 51 | <SpawnPoint position="-330,330,165" lookat="0,0,0" /> |
---|
[10088] | 52 | |
---|
[10096] | 53 | <Mini4DgameCenterpoint name=mini4Dgamecenter width=16 height=16 length=16 position="0,0,0"> |
---|
| 54 | <attached> |
---|
[10104] | 55 | <?lua |
---|
| 56 | for i = -90, 90, 60 |
---|
[10115] | 57 | do |
---|
[10104] | 58 | ?> |
---|
| 59 | <?lua |
---|
| 60 | for j = -90, 90, 60 |
---|
[10115] | 61 | do |
---|
[10104] | 62 | ?> |
---|
| 63 | <?lua |
---|
| 64 | for k = -90, 90, 60 |
---|
[10115] | 65 | do |
---|
[10104] | 66 | ?> |
---|
| 67 | <Model |
---|
| 68 | position="<?lua print(i) ?>,<?lua print(j) ?>,<?lua print(k) ?>" |
---|
[10115] | 69 | mesh="checkPoint.mesh" |
---|
| 70 | scale="5" /> |
---|
[10104] | 71 | <?lua |
---|
| 72 | end |
---|
| 73 | ?> |
---|
| 74 | <?lua |
---|
| 75 | end |
---|
| 76 | ?> |
---|
| 77 | <?lua |
---|
| 78 | end |
---|
| 79 | ?> |
---|
[10096] | 80 | </attached> |
---|
| 81 | </Mini4DgameCenterpoint> |
---|
| 82 | |
---|
[10088] | 83 | |
---|
| 84 | </Scene> |
---|
| 85 | </Level> |
---|
| 86 | |
---|