From d08337326ce9117eef95c8451354ab6f427475a5 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 3 Dec 2014 12:59:51 -0800 Subject: [PATCH] Update selection box color to red --- examples/libraries/entitySelectionTool.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/libraries/entitySelectionTool.js b/examples/libraries/entitySelectionTool.js index fff1a54abd..40b5b78a31 100644 --- a/examples/libraries/entitySelectionTool.js +++ b/examples/libraries/entitySelectionTool.js @@ -338,12 +338,12 @@ SelectionDisplay = (function () { var selectionBox = Overlays.addOverlay("cube", { position: { x:0, y: 0, z: 0}, size: 1, - color: { red: 60, green: 60, blue: 60}, + color: { red: 255, green: 0, blue: 0}, alpha: 1, solid: false, visible: false, - dashed: true, - lineWidth: 2.0, + dashed: false, + lineWidth: 1.0, }); var selectionBoxes = [];