diff --git a/assignment-client/src/audio/AudioMixerClientData.cpp b/assignment-client/src/audio/AudioMixerClientData.cpp index 0ac28c5e70..08bbf5dc55 100644 --- a/assignment-client/src/audio/AudioMixerClientData.cpp +++ b/assignment-client/src/audio/AudioMixerClientData.cpp @@ -626,7 +626,7 @@ AudioMixerClientData::IgnoreZone& AudioMixerClientData::IgnoreZoneMemo::get(unsi // quadruple the scale (this is arbitrary number chosen for comfort) // For testing purposes, this number isn't 4.0f. - const float IGNORE_BOX_SCALE_FACTOR = 2.4f; + const float IGNORE_BOX_SCALE_FACTOR = 1.8f; scale *= IGNORE_BOX_SCALE_FACTOR; // create the box (we use a box for the zone for convenience) diff --git a/assignment-client/src/avatars/AvatarMixerSlave.cpp b/assignment-client/src/avatars/AvatarMixerSlave.cpp index 00465f9412..cadc65edb1 100644 --- a/assignment-client/src/avatars/AvatarMixerSlave.cpp +++ b/assignment-client/src/avatars/AvatarMixerSlave.cpp @@ -272,7 +272,7 @@ void AvatarMixerSlave::broadcastAvatarDataToAgent(const SharedNodePointer& node) otherNodeBox.setScaleStayCentered(minBubbleSize); } // Quadruple the scale of both bounding boxes - otherNodeBox.embiggen(2.4f); + otherNodeBox.embiggen(1.8f); // Perform the collision check between the two bounding boxes if (nodeBox.touches(otherNodeBox)) {