From f3d8d1641f62b36365671dcf8f085bbfc97aa40e Mon Sep 17 00:00:00 2001 From: Rob Kayson Date: Fri, 12 May 2017 15:10:40 -0700 Subject: [PATCH] fix indent createFloatingLanternBox.js --- scripts/tutorials/createFloatingLanternBox.js | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/scripts/tutorials/createFloatingLanternBox.js b/scripts/tutorials/createFloatingLanternBox.js index a925cfff22..c84214e295 100644 --- a/scripts/tutorials/createFloatingLanternBox.js +++ b/scripts/tutorials/createFloatingLanternBox.js @@ -22,21 +22,21 @@ var LIFETIME = 3600; var SCALE_FACTOR = 1; var lanternBox = { - type: "Model", - name: "Floating Lantern Box", - description: "Spawns Lanterns that float away when grabbed and released!", - script: SCRIPT_URL, - modelURL: MODEL_URL, - shapeType: "Compound", - compoundShapeURL: COMPOUND_SHAPE_URL, - position: START_POSITION, - lifetime: LIFETIME, - dimensions: { - x: 0.8696 * SCALE_FACTOR, - y: 0.58531 * SCALE_FACTOR, - z: 0.9264 * SCALE_FACTOR - }, - owningAvatarID: MyAvatar.sessionUUID + type: "Model", + name: "Floating Lantern Box", + description: "Spawns Lanterns that float away when grabbed and released!", + script: SCRIPT_URL, + modelURL: MODEL_URL, + shapeType: "Compound", + compoundShapeURL: COMPOUND_SHAPE_URL, + position: START_POSITION, + lifetime: LIFETIME, + dimensions: { + x: 0.8696 * SCALE_FACTOR, + y: 0.58531 * SCALE_FACTOR, + z: 0.9264 * SCALE_FACTOR + }, + owningAvatarID: MyAvatar.sessionUUID }; Entities.addEntity(lanternBox);