Changeset 8587 for code/branches/presentation/src
- Timestamp:
- May 25, 2011, 11:44:04 PM (13 years ago)
- Location:
- code/branches/presentation/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/orxonox/graphics/Camera.cc
r8580 r8587 48 48 CreateFactory(Camera); 49 49 50 Camera::Camera(BaseObject* creator) : MovableEntity(creator)50 Camera::Camera(BaseObject* creator) : StaticEntity(creator) 51 51 { 52 52 RegisterObject(Camera); -
code/branches/presentation/src/orxonox/graphics/Camera.h
r8580 r8587 36 36 #include "tools/interfaces/Tickable.h" 37 37 #include "tools/interfaces/TimeFactorListener.h" 38 #include "worldentities/ MovableEntity.h"38 #include "worldentities/StaticEntity.h" 39 39 40 40 namespace orxonox 41 41 { 42 42 43 class _OrxonoxExport Camera : public MovableEntity,public TimeFactorListener, public WindowEventListener43 class _OrxonoxExport Camera : public StaticEntity, public Tickable, public TimeFactorListener, public WindowEventListener 44 44 { 45 45 friend class CameraManager; -
code/branches/presentation/src/orxonox/worldentities/pawns/SpaceShip.cc
r8583 r8587 81 81 this->cameraOriginalPosition_ = Vector3::UNIT_SCALE; 82 82 this->cameraOriginalOrientation_ = Quaternion::IDENTITY; 83 84 83 85 84 this->shakeFrequency_ = 15;
Note: See TracChangeset
for help on using the changeset viewer.