lost my - sign

This commit is contained in:
David Kelly 2017-01-06 08:44:22 -07:00
parent 88ed96918a
commit a107b2f06e

View file

@ -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;