Try a value of 1.8

This commit is contained in:
Zach Fox 2018-06-07 14:45:33 -07:00
parent 448a522b70
commit f7de3cf218
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 = 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)

View file

@ -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)) {