From d5e6afa15a28696fc0d3c97025880dae7dc885e5 Mon Sep 17 00:00:00 2001 From: David Kelly Date: Thu, 5 Jan 2017 11:54:50 -0700 Subject: [PATCH] slightly further forward, a little bigger --- scripts/system/pal.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/system/pal.js b/scripts/system/pal.js index 2eb01bd26d..0fefe87de3 100644 --- a/scripts/system/pal.js +++ b/scripts/system/pal.js @@ -264,20 +264,20 @@ function updateOverlays() { var target = avatar.position; // now adjust target to be slightly in front - target = Vec3.subtract(target, Vec3.multiply(Vec3.normalize(eye), -0.1)); + target = Vec3.subtract(target, Vec3.multiply(Vec3.normalize(eye), -0.2)); var distance = Vec3.distance(target, eye); overlay.ping = pingPong; overlay.editOverlay({ position: target, - scale: 0.15 * distance, // constant apparent size + scale: 0.2 * distance, // constant apparent size rotation: Camera.orientation }); if (overlay.sphere) { overlay.sphere.ping = pingPong; overlay.sphere.editOverlay({ position: target, - dimensions: 0.025 * distance + dimensions: 0.032 * distance }); } });