Changeset 10618 in orxonox.OLD for trunk/src/world_entities/effects
- Timestamp:
- Apr 4, 2007, 12:13:53 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 16 16 OrxonoxPlayability.kdevses 17 17 OrxonoxPlayability.kdevelop.pcs 18 orxonox.backtrace 19 orxonox.kdevses 20 orxonox.kdevelop.pcs
-
- Property svn:ignore
-
trunk/src/world_entities/effects/billboard.cc
r10501 r10618 22 22 #include "glincl.h" 23 23 #include "state.h" 24 #include " cameraman.h"25 #include " camera.h"24 #include "tools/cameraman.h" 25 #include "tools/camera.h" 26 26 27 27 #include "debug.h" … … 134 134 this->material->select(); 135 135 136 const CameraMan* man = State::getCameraman(); 137 const Camera* camera = man->getCurrentCam(); //!< @todo MUST be different 136 const Camera* camera = State::getCamera(); 138 137 Vector cameraPos = camera->getAbsCoor(); 139 138 Vector cameraTargetPos = camera->getTarget()->getAbsCoor(); -
trunk/src/world_entities/effects/blink.cc
r10530 r10618 1 1 /* 2 orxonox - the future of 3D-vertical-scrollers 2 3 3 4 Copyright (C) 2006 orx -
trunk/src/world_entities/effects/trail.cc
r10511 r10618 21 21 #include "util/loading/load_param.h" 22 22 #include "util/loading/factory.h" 23 24 #include "quaternion.h"25 #include "vector.h"26 23 27 24 #include "graphics_engine.h" -
trunk/src/world_entities/effects/wobblegrid.cc
r10557 r10618 24 24 #include "grid.h" 25 25 26 #include " cameraman.h"27 #include " camera.h"28 29 #include < assert.h>26 #include "tools/cameraman.h" 27 #include "tools/camera.h" 28 29 #include <cassert> 30 30 #include "debug.h" 31 31 … … 93 93 this->angularSpeed = M_PI; //180; 94 94 this->setModel(this->grid); 95 96 this->angle = 0; 95 97 96 98 this->setUpdateFunction((*sinf)); … … 201 203 void Wobblegrid::orient() 202 204 { 203 204 CameraMan* cman = State::getCameraman(); 205 Camera* c = cman->getCurrentCam(); 205 206 Camera* c = State::getCamera(); 206 207 207 208 Vector view = this->getAbsCoor() - c->getAbsCoor();
Note: See TracChangeset
for help on using the changeset viewer.