Made color indicator thinner

This commit is contained in:
ericrius1 2015-10-14 17:22:46 -07:00
parent 5082ac4583
commit 87439a049e

View file

@ -35,7 +35,7 @@ var colors = [
var whiteboardDimensions = { var whiteboardDimensions = {
x: 2, x: 2,
y: 1.5, y: 1.5,
z: 0.02 z: 0.08
}; };
var whiteboard = Entities.addEntity({ var whiteboard = Entities.addEntity({
type: "Model", type: "Model",
@ -59,7 +59,7 @@ var whiteboard = Entities.addEntity({
// COLOR INDICATOR BOX // COLOR INDICATOR BOX
var colorIndicatorDimensions = { var colorIndicatorDimensions = {
x: whiteboardDimensions.x, x: whiteboardDimensions.x,
y: 0.2, y: 0.05,
z: 0.02 z: 0.02
}; };
scriptURL = Script.resolvePath("colorIndicatorEntityScript.js"); scriptURL = Script.resolvePath("colorIndicatorEntityScript.js");