diff options
author | UbitUmarov | 2012-05-17 04:41:46 +0100 |
---|---|---|
committer | UbitUmarov | 2012-05-17 04:41:46 +0100 |
commit | e4231e95a976f8b3c02add39b94721eebb639674 (patch) | |
tree | 7f01cc8316dfd102397ffec0d779cd972d63511a /OpenSim/Region/Framework/Scenes/CollisionSounds.cs | |
parent | add avatar colision sounds. Changed test sound UUID (diff) | |
download | opensim-SC-e4231e95a976f8b3c02add39b94721eebb639674.zip opensim-SC-e4231e95a976f8b3c02add39b94721eebb639674.tar.gz opensim-SC-e4231e95a976f8b3c02add39b94721eebb639674.tar.bz2 opensim-SC-e4231e95a976f8b3c02add39b94721eebb639674.tar.xz |
increase avatars collisions report to 10 per sec, Stopped sound on avatar to volumedetect collision
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/CollisionSounds.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/CollisionSounds.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/CollisionSounds.cs b/OpenSim/Region/Framework/Scenes/CollisionSounds.cs index a22ee10..c46756c 100644 --- a/OpenSim/Region/Framework/Scenes/CollisionSounds.cs +++ b/OpenSim/Region/Framework/Scenes/CollisionSounds.cs | |||
@@ -167,7 +167,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
167 | SceneObjectPart otherPart = part.ParentGroup.Scene.GetSceneObjectPart(Id); | 167 | SceneObjectPart otherPart = part.ParentGroup.Scene.GetSceneObjectPart(Id); |
168 | if (otherPart != null) | 168 | if (otherPart != null) |
169 | { | 169 | { |
170 | if (otherPart.CollisionSound == part.invalidCollisionSoundUUID) | 170 | if (otherPart.CollisionSound == part.invalidCollisionSoundUUID || otherPart.VolumeDetectActive) |
171 | continue; | 171 | continue; |
172 | if (otherPart.CollisionSound != UUID.Zero) | 172 | if (otherPart.CollisionSound != UUID.Zero) |
173 | otherPart.SendCollisionSound(otherPart.CollisionSound, otherPart.CollisionSoundVolume); | 173 | otherPart.SendCollisionSound(otherPart.CollisionSound, otherPart.CollisionSoundVolume); |