Changeset 5738 for code/trunk/src/orxonox/sound
- Timestamp:
- Sep 1, 2009, 2:03:05 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/libraries2 (added) merged: 5703-5717,5719-5737
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/sound/SoundBase.cc
r5695 r5738 37 37 #include "core/Core.h" 38 38 #include "core/Resource.h" 39 #include " orxonox/objects/worldentities/WorldEntity.h"39 #include "worldentities/WorldEntity.h" 40 40 #include "SoundManager.h" 41 41 42 namespace orxonox 42 namespace orxonox 43 43 { 44 44 SoundBase::SoundBase(WorldEntity* entity) -
code/trunk/src/orxonox/sound/SoundManager.cc
r3370 r5738 32 32 33 33 #include "util/Math.h" 34 #include " orxonox/CameraManager.h"35 #include " orxonox/objects/worldentities/Camera.h"34 #include "CameraManager.h" 35 #include "graphics/Camera.h" 36 36 #include "SoundBase.h" 37 37 … … 146 146 Vector3 at = orient.zAxis(); 147 147 148 ALfloat orientation[6] = { at.x, at.y, at.z, 148 ALfloat orientation[6] = { at.x, at.y, at.z, 149 149 up.x, up.y, up.z }; 150 150 … … 158 158 (*i)->update(); 159 159 } 160 160 161 161 /** 162 162 * Check if sound is available
Note: See TracChangeset
for help on using the changeset viewer.