Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FlappyOrx_HS17/data/levels/Invaders.oxw @ 11620

Last change on this file since 11620 was 11596, checked in by merholzl, 8 years ago

Cleanup of level files

  • Property svn:eol-style set to native
File size: 1.9 KB
RevLine 
[9698]1<LevelInfo
[9866]2 name = "Orxonox Arcade"
[9874]3 description = "2D Arcade shooter. Maximise your points!!!\nTip: try to keep the multiplier high by avoiding shots and enemies."
[9866]4 tags = "minigame"
[9905]5 screenshot = "orxonoxArcade.png"
[9698]6/>
[11503]7
[9698]8<?lua
9  include("stats.oxo")
10  include("templates/lodInformation.oxt")
11?>
12
13<?lua
14  include("templates/spaceshipAssff2.oxt")
15  include("templates/spaceshipPirate.oxt")
[9701]16  include("templates/spaceshipInvader.oxt")
[9777]17  include("templates/enemyInvader.oxt")
[9828]18  include("overlays/InvaderHUD.oxo")
[9698]19?>
20
[10624]21<Level
22  plugins = invader
23  gametype = Invader
24>
[9698]25  <templates>
26    <Template link=lodtemplate_default />
27  </templates>
28  <?lua include("includes/notifications.oxi") ?>
29
[9868]30    <!-- ambientlight = "0.8, 0.8, 0.8"
31    skybox       = "Orxonox/Starbox" -->
[9698]32  <Scene
[9868]33    ambientlight = "0.8, 0.7, 0.4"
34    skybox     = "Orxonox/skyBoxBasic"
[9698]35  >
36
[9884]37  <WorldAmbientSound
38    source="Earth.ogg"
39    looping="true"
40    playOnLoad="true"
41  />
42
[9868]43    <!-- <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"/> -->
44    <Light type=directional position="1100, 11000, -7000" lookat="0, 0, 0" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0" />
[9709]45    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=InvaderShip pawndesign=spaceshipinvader />
46
[11509]47    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=FlappyOrxShip pawndesign=spaceshipFlappyOrx />
[9724]48
[9698]49   
[11589]50    <InvaderCenterPoint name=invadercenter />
[11504]51   
52     <MovableEntity
[11596]53      position = "3000,0,0"
[11504]54      collisionType = dynamic
55      linearDamping = 0.8
56      angularDamping = 0
[11596]57      scale = "10"
[11504]58      collisiondamage = 0
59      enablecollisiondamage = true
60    >
61   
62      <attached>
[11596]63        <Model mass="1000" mesh="ast6.mesh" />
[11504]64      </attached>
65      <collisionShapes>
[11596]66        <SphereCollisionShape radius="10" />
[11504]67      </collisionShapes>
68    </MovableEntity>
69
[9724]70   
[11596]71   
[9698]72  </Scene>
73</Level>
74
Note: See TracBrowser for help on using the repository browser.