mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Remove unused stepWelcome from tutorial
This commit is contained in:
parent
273ba5e948
commit
efbf55c0d7
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