Let's try 20%

This commit is contained in:
Zach Fox 2018-06-08 10:19:55 -07:00
parent f7de3cf218
commit 76b5dae721
2 changed files with 2 additions and 2 deletions

View file

@ -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 = 1.8f;
const float IGNORE_BOX_SCALE_FACTOR = 0.8f;
scale *= IGNORE_BOX_SCALE_FACTOR;
// create the box (we use a box for the zone for convenience)

View file

@ -272,7 +272,7 @@ void AvatarMixerSlave::broadcastAvatarDataToAgent(const SharedNodePointer& node)
otherNodeBox.setScaleStayCentered(minBubbleSize);
}
// Quadruple the scale of both bounding boxes
otherNodeBox.embiggen(1.8f);
otherNodeBox.embiggen(0.8f);
// Perform the collision check between the two bounding boxes
if (nodeBox.touches(otherNodeBox)) {