From 7c85709628630d03bd5bebf9ab6a9a0017b2d590 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 16 Dec 2016 14:51:07 -0800 Subject: [PATCH] Update tutorial to run far grab before near grab --- tutorial/tutorial.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/tutorial.js b/tutorial/tutorial.js index 2758992cb3..5ca165b656 100644 --- a/tutorial/tutorial.js +++ b/tutorial/tutorial.js @@ -575,6 +575,7 @@ stepNearGrab.prototype = { setControllerPartLayer('tips', 'blank'); setControllerPartLayer('trigger', 'normal'); hideEntitiesWithTag(this.tag, { visible: false}); + hideEntitiesWithTag('bothGrab', { visible: false}); deleteEntitiesWithTag(this.tempTag); if (this.positionWatcher) { this.positionWatcher.destroy(); @@ -654,7 +655,6 @@ stepFarGrab.prototype = { setControllerPartLayer('tips', 'blank'); setControllerPartLayer('trigger', 'normal'); hideEntitiesWithTag(this.tag, { visible: false}); - hideEntitiesWithTag('bothGrab', { visible: false}); deleteEntitiesWithTag(this.tempTag); if (this.positionWatcher) { this.positionWatcher.destroy(); @@ -1068,8 +1068,8 @@ TutorialManager = function() { STEPS = [ new stepStart(this), new stepOrient(this), - new stepNearGrab(this), new stepFarGrab(this), + new stepNearGrab(this), new stepEquip(this), new stepTurnAround(this), new stepTeleport(this),