mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 20:58:38 +02:00
Update tutorial to run far grab before near grab
This commit is contained in:
parent
3dfc3946ba
commit
080bc738ea
1 changed files with 2 additions and 2 deletions
|
@ -575,6 +575,7 @@ stepNearGrab.prototype = {
|
||||||
setControllerPartLayer('tips', 'blank');
|
setControllerPartLayer('tips', 'blank');
|
||||||
setControllerPartLayer('trigger', 'normal');
|
setControllerPartLayer('trigger', 'normal');
|
||||||
hideEntitiesWithTag(this.tag, { visible: false});
|
hideEntitiesWithTag(this.tag, { visible: false});
|
||||||
|
hideEntitiesWithTag('bothGrab', { visible: false});
|
||||||
deleteEntitiesWithTag(this.tempTag);
|
deleteEntitiesWithTag(this.tempTag);
|
||||||
if (this.positionWatcher) {
|
if (this.positionWatcher) {
|
||||||
this.positionWatcher.destroy();
|
this.positionWatcher.destroy();
|
||||||
|
@ -654,7 +655,6 @@ stepFarGrab.prototype = {
|
||||||
setControllerPartLayer('tips', 'blank');
|
setControllerPartLayer('tips', 'blank');
|
||||||
setControllerPartLayer('trigger', 'normal');
|
setControllerPartLayer('trigger', 'normal');
|
||||||
hideEntitiesWithTag(this.tag, { visible: false});
|
hideEntitiesWithTag(this.tag, { visible: false});
|
||||||
hideEntitiesWithTag('bothGrab', { visible: false});
|
|
||||||
deleteEntitiesWithTag(this.tempTag);
|
deleteEntitiesWithTag(this.tempTag);
|
||||||
if (this.positionWatcher) {
|
if (this.positionWatcher) {
|
||||||
this.positionWatcher.destroy();
|
this.positionWatcher.destroy();
|
||||||
|
@ -1068,8 +1068,8 @@ TutorialManager = function() {
|
||||||
STEPS = [
|
STEPS = [
|
||||||
new stepStart(this),
|
new stepStart(this),
|
||||||
new stepOrient(this),
|
new stepOrient(this),
|
||||||
new stepNearGrab(this),
|
|
||||||
new stepFarGrab(this),
|
new stepFarGrab(this),
|
||||||
|
new stepNearGrab(this),
|
||||||
new stepEquip(this),
|
new stepEquip(this),
|
||||||
new stepTurnAround(this),
|
new stepTurnAround(this),
|
||||||
new stepTeleport(this),
|
new stepTeleport(this),
|
||||||
|
|
Loading…
Reference in a new issue