From 1145c3b59006e2bf3378f80a8d85e5f48b9858dc Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 15 Jul 2016 17:45:16 -0700 Subject: [PATCH] Smaller and hotter circle, per Philip --- scripts/system/controllers/handControllerGrab.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/system/controllers/handControllerGrab.js b/scripts/system/controllers/handControllerGrab.js index 4f0578369f..8020163d32 100644 --- a/scripts/system/controllers/handControllerGrab.js +++ b/scripts/system/controllers/handControllerGrab.js @@ -557,12 +557,12 @@ function MyController(hand) { this.searchSphereOn = function (location, size, color) { var rotation = Quat.lookAt(location, Camera.getPosition(), Vec3.UP); - var brightColor = colorPow(color, 0.1); + var brightColor = colorPow(color, 0.06); if (this.searchSphere === null) { var sphereProperties = { position: location, rotation: rotation, - outerRadius: size * 3.0, + outerRadius: size * 1.2, innerColor: brightColor, outerColor: color, innerAlpha: 0.9, @@ -581,7 +581,7 @@ function MyController(hand) { outerColor: color, innerAlpha: 1.0, outerAlpha: 0.0, - outerRadius: size * 3.0, + outerRadius: size * 1.2, visible: true }); }