in the right place... thanks howard!

This commit is contained in:
James B. Pollack 2016-08-23 12:07:59 -07:00
parent fcf459645d
commit fb6fa687e8

View file

@ -553,6 +553,7 @@ function Teleporter() {
_this.smoothArrivalInterval = Script.setInterval(function() {
if (_this.arrivalPoints.length === 0) {
Script.clearInterval(_this.smoothArrivalInterval);
HMD.centerUI();
return;
}
var landingPoint = _this.arrivalPoints.shift();
@ -564,8 +565,8 @@ function Teleporter() {
}
}, SMOOTH_ARRIVAL_SPACING);
HMD.centerUI();
}
}