From ed5a8dcdca2298b15ccb562d5452624d5fe7a66d Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Sun, 4 Nov 2018 19:11:56 +0000 Subject: [PATCH] Change near dist on cursor controller pull to prevent grab/cursor confusion --- src/components/cursor-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/cursor-controller.js b/src/components/cursor-controller.js index 1b095fc05..79289c07d 100644 --- a/src/components/cursor-controller.js +++ b/src/components/cursor-controller.js @@ -13,7 +13,7 @@ AFRAME.registerComponent("cursor-controller", { cursor: { type: "selector" }, camera: { type: "selector" }, far: { default: 3 }, - near: { default: 0 }, + near: { default: 0.06 }, cursorColorHovered: { default: "#2F80ED" }, cursorColorUnhovered: { default: "#FFFFFF" }, rayObject: { type: "selector" }, -- GitLab