From b968f051230928ad95ddb0d3410d1d046ce262bb Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 4 Nov 2014 11:54:14 -0800 Subject: [PATCH] use a new cursor for selection in lobby --- examples/lobby.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/lobby.js b/examples/lobby.js index 7aa2039683..63ea1654a9 100644 --- a/examples/lobby.js +++ b/examples/lobby.js @@ -74,15 +74,15 @@ function drawLobby() { orbShell = Overlays.addOverlay("model", orbShellProps); // for HMD wearers, create a reticle in center of screen - var RETICLE_SPHERE_SIZE = 0.025; + var CURSOR_SCALE = 0.025; - reticle = Overlays.addOverlay("sphere", { + reticle = Overlays.addOverlay("billboard", { + url: HIFI_PUBLIC_BUCKET + "images/cursor.svg", position: reticlePosition(), - size: RETICLE_SPHERE_SIZE, - color: { red: 0, green: 255, blue: 0 }, + ignoreRayIntersection: true, + isFacingAvatar: true, alpha: 1.0, - solid: true, - ignoreRayIntersection: true + scale: CURSOR_SCALE }); // add an attachment on this avatar so other people see them in the lobby