Changeset 10926
- Timestamp:
- Dec 7, 2015, 1:26:23 PM (9 years ago)
- Location:
- code/branches/hoverHS15
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hoverHS15/data/levels/Hover.oxw
r10895 r10926 30 30 ambientlight = "0.8, 0.8, 0.8" 31 31 skybox = "Orxonox/Starbox" 32 gravity = "0, - 40, 0"32 gravity = "0, -100, 0" 33 33 > 34 34 … … 55 55 <StaticEntity position="0,0,0" collisionType="static"> 56 56 <attached> 57 <Model position=" 0, 0,0" yaw="0" pitch="0" roll="0" scale3D="10000, 1, 10000" mesh="CubeGround.mesh" />57 <Model position="500, -10,500" yaw="0" pitch="0" roll="0" scale3D="500, 10, 500" mesh="CubeGround.mesh" /> 58 58 </attached> 59 59 <collisionShapes> 60 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="0,0,0" halfExtents="10000, 1, 10000" /> 60 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="0,-10,0" halfExtents="10000, 10, 10000" /> 61 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="500, 0,0" halfExtents="1000, 1000, 1" /> 62 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="500, 0, 1000" halfExtents="1000, 1000, 1" /> 63 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="0, 0, 500" halfExtents="1, 1000, 1000" /> 64 <BoxCollisionShape yaw="0" pitch="0" roll="0" position="1000, 0, 500" halfExtents="1, 1000, 1000" /> 65 66 61 67 </collisionShapes> 62 68 </StaticEntity> … … 78 84 79 85 <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"/> 80 <SpawnPoint team=0 position=" 0,100,0" lookat="100,100,0" spawnclass=HoverShip pawndesign=spaceshiphover />86 <SpawnPoint team=0 position="50,20,50" lookat="100,20,100" spawnclass=HoverShip pawndesign=spaceshiphover /> 81 87 82 88 </Scene> -
code/branches/hoverHS15/data/levels/templates/spaceshipHover.oxt
r10893 r10926 51 51 <BoxCollisionShape position="13,-1.3,0" halfExtents="3, 1, 2" /> 52 52 <BoxCollisionShape position="-13,-1.3,0" halfExtents="3, 1, 2" /> 53 <BoxCollisionShape position="13,-10,0" halfExtents="3, 1, 2" /> 54 <BoxCollisionShape position="-13,-10,0" halfExtents="3, 1, 2" /> 53 55 <BoxCollisionShape position="0,0,7" halfExtents="3, 2, 2" /> 54 56 <BoxCollisionShape position="0,0.1,-11" halfExtents="2.2, 1.8, 6" /> -
code/branches/hoverHS15/src/modules/hover/HoverWall.cc
r10787 r10926 75 75 76 76 model_ = new Model(context); 77 model_->setMeshSource(" cube.mesh");77 model_->setMeshSource("CuboidBody.mesh"); 78 78 model_->setScale3D(Vector3(xSize_, 30, zSize_)); 79 79 model_->setPosition(Vector3(xPos_,0,zPos_));
Note: See TracChangeset
for help on using the changeset viewer.