mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 10:37:35 +02:00
Remove unused stepWelcome from tutorial
This commit is contained in:
parent
80356bd02d
commit
9d3d56d4eb
1 changed files with 0 additions and 23 deletions
|
@ -415,29 +415,6 @@ stepEnableControllers.prototype = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
// //
|
|
||||||
// STEP: Welcome //
|
|
||||||
// //
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
var stepWelcome = function(name) {
|
|
||||||
this.tag = name;
|
|
||||||
}
|
|
||||||
stepWelcome.prototype = {
|
|
||||||
start: function(onFinish) {
|
|
||||||
this.timerID = Script.setTimeout(onFinish, 8000);
|
|
||||||
showEntitiesWithTag(this.tag);
|
|
||||||
},
|
|
||||||
cleanup: function() {
|
|
||||||
if (this.timerID) {
|
|
||||||
Script.clearTimeout(this.timerID);
|
|
||||||
this.timerID = null;
|
|
||||||
}
|
|
||||||
hideEntitiesWithTag(this.tag);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in a new issue