1 | <LevelInfo |
---|
2 | name = "Presentation XI FPS 1st" |
---|
3 | description = "2nd Presentation level for Orxonox Convention XI, FPS" |
---|
4 | tags = "presentation" |
---|
5 | screenshot = "presentationxifps1st.png" |
---|
6 | /> |
---|
7 | |
---|
8 | <?lua |
---|
9 | include("HUDTemplates3.oxo") |
---|
10 | include("stats.oxo") |
---|
11 | include("templates/spaceshipAssff.oxt") |
---|
12 | include("templates/spaceshipH2.oxt") |
---|
13 | include("templates/FPS.oxt") |
---|
14 | include("templates/lodInformation.oxt") |
---|
15 | ?> |
---|
16 | |
---|
17 | <Level |
---|
18 | name = "fps" |
---|
19 | description = "tests" |
---|
20 | > |
---|
21 | <templates> |
---|
22 | <Template link=lodtemplate_default /> |
---|
23 | </templates> |
---|
24 | <?lua include("includes/notifications.oxi") ?> |
---|
25 | |
---|
26 | <Scene |
---|
27 | ambientlight = "0.1, 0.1, 0.1" |
---|
28 | skybox = "Orxonox/skypanoramagen1" |
---|
29 | gravity = "0,-1000,0" |
---|
30 | negativeWorldRange = "-100000, -100000, -100000" |
---|
31 | positiveWorldRange = " 100000, 100000, 100000" |
---|
32 | hasPhysics = true |
---|
33 | > |
---|
34 | <Light type=directional position="0,-100000,0" direction="0.02, -1, 0.05" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0" /> |
---|
35 | |
---|
36 | <Pawn health=100 position="600,35,0" direction="0,-1,0" collisionType=dynamic mass=100000> |
---|
37 | <attached> |
---|
38 | <Model position="0,0,0" mesh="fish.mesh" scale3D="5,5,5" /> |
---|
39 | </attached> |
---|
40 | <collisionShapes> |
---|
41 | <BoxCollisionShape position="0,0,0" halfExtents="25,25,25" /> |
---|
42 | </collisionShapes> |
---|
43 | </Pawn> |
---|
44 | |
---|
45 | <Pawn health=100 position="0,-35,0" direction="0,-1,0" collisionType=dynamic mass=100000> |
---|
46 | <attached> |
---|
47 | <Model position="0,0,0" mesh="crate.mesh" scale3D="5,5,5" /> |
---|
48 | </attached> |
---|
49 | <collisionShapes> |
---|
50 | <BoxCollisionShape position="0,0,0" halfExtents="25,25,25" /> |
---|
51 | </collisionShapes> |
---|
52 | </Pawn> |
---|
53 | |
---|
54 | <StaticEntity position="0,-50,0" direction="0,-1,0" collisionType=static mass=100000 > |
---|
55 | <attached> |
---|
56 | <Model position="0,0,0" mesh="cube.mesh" scale3D="100,100,10" /> |
---|
57 | </attached> |
---|
58 | <collisionShapes> |
---|
59 | <BoxCollisionShape position="0,0,0" halfExtents="100,100,10" /> |
---|
60 | </collisionShapes> |
---|
61 | </StaticEntity> |
---|
62 | |
---|
63 | <StaticEntity position="210,-30,0" direction="0,-1,0" collisionType=static mass=100000 > |
---|
64 | <attached> |
---|
65 | <Model position="0,0,0" mesh="cube_orange.mesh" scale3D="100,100,10" /> |
---|
66 | </attached> |
---|
67 | <collisionShapes> |
---|
68 | <BoxCollisionShape position="0,0,0" halfExtents="100,100,10" /> |
---|
69 | </collisionShapes> |
---|
70 | </StaticEntity> |
---|
71 | |
---|
72 | <StaticEntity position="600,-20,0" direction="0,-1,0" collisionType=static mass=100000 > |
---|
73 | <attached> |
---|
74 | <Model position="0,0,0" mesh="cube_green.mesh" scale3D="100,100,10" /> |
---|
75 | </attached> |
---|
76 | <collisionShapes> |
---|
77 | <BoxCollisionShape position="0,0,0" halfExtents="100,100,10" /> |
---|
78 | </collisionShapes> |
---|
79 | </StaticEntity> |
---|
80 | |
---|
81 | <StaticEntity position="600,10,120" direction="0,-1,1" collisionType=static mass=100000 > |
---|
82 | <attached> |
---|
83 | <Model position="0,0,0" mesh="cube_red.mesh" scale3D="100,100,10" /> |
---|
84 | </attached> |
---|
85 | <collisionShapes> |
---|
86 | <BoxCollisionShape position="0,0,0" halfExtents="100,100,10" /> |
---|
87 | </collisionShapes> |
---|
88 | </StaticEntity> |
---|
89 | |
---|
90 | <StaticEntity position="600,40,250" direction="0,-1,0" collisionType=static mass=100000 > |
---|
91 | <attached> |
---|
92 | <Model position="0,0,0" mesh="cube.mesh" scale3D="100,100,10" /> |
---|
93 | </attached> |
---|
94 | <collisionShapes> |
---|
95 | <BoxCollisionShape position="0,0,0" halfExtents="100,100,10" /> |
---|
96 | </collisionShapes> |
---|
97 | </StaticEntity> |
---|
98 | |
---|
99 | <?lua |
---|
100 | for i = 1, 10, 1 |
---|
101 | do ?> |
---|
102 | <SpawnPoint position="0,300,0" direction="0, 0, 0" lookat="0,0,100000000" spawnclass=FpsPlayer pawndesign=fps /> |
---|
103 | <?lua |
---|
104 | end |
---|
105 | ?> |
---|
106 | |
---|
107 | |
---|
108 | </Scene> |
---|
109 | </Level> |
---|