From a107b2f06e200a4f4672b0872d48143ce682e609 Mon Sep 17 00:00:00 2001 From: David Kelly Date: Fri, 6 Jan 2017 08:44:22 -0700 Subject: [PATCH] lost my - sign --- scripts/system/pal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/pal.js b/scripts/system/pal.js index 81153c6fb8..ef16889035 100644 --- a/scripts/system/pal.js +++ b/scripts/system/pal.js @@ -281,7 +281,7 @@ function updateOverlays() { var diff = Vec3.subtract(target, eye); // move a bit in front, towards the camera - target = Vec3.sum(target, Vec3.multiply(Vec3.normalize(diff), offset)); + target = Vec3.subtract(target, Vec3.multiply(Vec3.normalize(diff), offset)); // now bump it up a bit target.y = target.y + offset;