Changeset 8793 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Jun 26, 2006, 3:36:16 PM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/WorldEntities.am
r8724 r8793 9 9 world_entities/skysphere.cc \ 10 10 world_entities/skybox.cc \ 11 world_entities/skydome.cc \ 11 12 world_entities/terrain.cc \ 12 13 world_entities/satellite.cc \ … … 66 67 skysphere.h \ 67 68 skybox.h \ 69 skydome.h \ 68 70 terrain.h \ 69 71 satellite.h \ -
trunk/src/world_entities/effects/lightning_bolt.cc
r7713 r8793 64 64 if (this->thunderBuffer != NULL) 65 65 ResourceManager::getInstance()->unload(this->thunderBuffer); 66 this->thunderBuffer = (OrxSound::SoundBuffer*)ResourceManager::getInstance()->load("sound/ thunder.wav", WAV);66 this->thunderBuffer = (OrxSound::SoundBuffer*)ResourceManager::getInstance()->load("sound/atmosphere/thunder.wav", WAV); 67 67 } 68 68 -
trunk/src/world_entities/npcs/generic_npc.h
r8783 r8793 11 11 12 12 #include <string> 13 // 13 14 14 #include "sound_source.h" 15 16 #include "vector.h" 17 #include "qaternion.h" 18 15 19 16 20 namespace OrxSound{ class SoundSource; } … … 38 42 void playSound(int i); 39 43 44 float lookAt(WorldEntity* worldEntity); 45 40 46 float walkTo(const Vector& coordinate, const Quaternion& dir); 41 47 float walkTo(float x, float y, float z, float qu, float qx, float qy, float qz); … … 50 56 float crouchTo(float x, float y, float qu, float qx, float qy, float qz); 51 57 58 float talkTo(WorldEnity* worldEntity, int dialogNr); 59 52 60 53 61 void destroy(); … … 60 68 OrxSound::SoundBuffer* soundBuffer; 61 69 float soundVolume; 70 71 Vector destCoor; 72 Quaternion destDir; 62 73 }; 63 74
Note: See TracChangeset
for help on using the changeset viewer.