From 7b881a6be07e2275d37da74ad2809def4c46addf Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Thu, 27 Oct 2016 15:02:21 -0700 Subject: [PATCH] Add begin step to tutorial --- tutorial/tutorial.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tutorial/tutorial.js b/tutorial/tutorial.js index 7b258611c7..1045599262 100644 --- a/tutorial/tutorial.js +++ b/tutorial/tutorial.js @@ -244,11 +244,10 @@ function playFirecrackerSound(position) { // STEP: DISABLE CONTROLLERS // // // /////////////////////////////////////////////////////////////////////////////// -var stepDisableControllers = function(name) { +var stepStart = function(name) { this.tag = name; - this.shouldLog = false; } -stepDisableControllers.prototype = { +stepStart.prototype = { start: function(onFinish) { disableEverything(); @@ -1035,7 +1034,7 @@ TutorialManager = function() { currentStep = null; startedTutorialAt = Date.now(); STEPS = [ - new stepDisableControllers("step0"), + new stepStart("start"), new stepOrient("orient"), //new stepRaiseAboveHead("raiseHands"), new stepNearGrab("nearGrab"),