Changeset 6001 in orxonox.OLD for branches/spaceshipcontrol
- Timestamp:
- Dec 9, 2005, 5:25:33 PM (19 years ago)
- Location:
- branches/spaceshipcontrol/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/story_entities/world.cc
r5899 r6001 412 412 } 413 413 414 this->music = NULL;//(OggPlayer*)ResourceManager::getInstance()->load("sound/00-luke_grey_-_hypermode.ogg", OGG, RP_LEVEL); 414 this->music = NULL; 415 //(OggPlayer*)ResourceManager::getInstance()->load("sound/00-luke_grey_-_hypermode.ogg", OGG, RP_LEVEL); 415 416 //music->playback(); 416 417 } -
branches/spaceshipcontrol/src/world_entities/camera.cc
r5769 r6001 1 2 3 1 /* 4 2 orxonox - the future of 3D-vertical-scrollers … … 115 113 void Camera::setViewMode(ViewMode mode) 116 114 { 115 currentMode = mode; 117 116 switch (mode) 118 117 { … … 180 179 { 181 180 float tmpFovy = (this->toFovy - this->fovy) ; 182 if (tmpFovy > .01)181 if (tmpFovy > 0.01) 183 182 this->fovy += tmpFovy * fabsf(dt); 184 183 } … … 207 206 Vector targetPosition = this->target->getAbsCoor(); 208 207 Vector up = this->getAbsDirV(); 208 Vector delay = Vector(0,0,0); 209 if( currentMode != VIEW_FRONT) delay = (this->target->getAbsDirX() * this->target->getSpeed())/30; 209 210 210 211 // Setting the Camera Eye, lookAt and up Vectors 211 gluLookAt(cameraPosition.x , cameraPosition.y, cameraPosition.z,212 gluLookAt(cameraPosition.x - delay.x, cameraPosition.y - delay.y, cameraPosition.z - delay.z, 212 213 targetPosition.x, targetPosition.y, targetPosition.z, 213 214 up.x, up.y, up.z); -
branches/spaceshipcontrol/src/world_entities/camera.h
r5005 r6001 58 58 59 59 float toFovy; //!< The fovy-mode to iterate to. 60 ViewMode currentMode; //!< The ViewMode the camera is in 60 61 }; 61 62
Note: See TracChangeset
for help on using the changeset viewer.