Loosen up the requirements for the turn step in the tutorial

This commit is contained in:
Ryan Huffman 2016-10-27 15:02:35 -07:00
parent 7b881a6be0
commit e6d2900bec

View file

@ -784,8 +784,8 @@ stepTurnAround.prototype = {
this.interval = Script.setInterval(function() {
debug("TurnAround | Checking if finished", this.numTimesTurnPressed);
var FORWARD_THRESHOLD = 30;
var REQ_NUM_TIMES_PRESSED = 6;
var FORWARD_THRESHOLD = 90;
var REQ_NUM_TIMES_PRESSED = 3;
var dir = Quat.getFront(MyAvatar.orientation);
var angle = Math.atan2(dir.z, dir.x);