mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 09:33:49 +02:00
Lint
This commit is contained in:
parent
8ab261d1b0
commit
0cd5fe35da
1 changed files with 3 additions and 2 deletions
|
@ -286,6 +286,7 @@
|
|||
recordingFilename = "",
|
||||
autoPlayTimer = null,
|
||||
|
||||
autoPlay,
|
||||
playRecording;
|
||||
|
||||
function error(message) {
|
||||
|
@ -323,7 +324,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
function autoPlay() {
|
||||
autoPlay = function () {
|
||||
var recording,
|
||||
AUTOPLAY_SEARCH_DELTA = 1000;
|
||||
|
||||
|
@ -346,7 +347,7 @@
|
|||
autoPlayTimer = Script.setTimeout(autoPlay, AUTOPLAY_SEARCH_INTERVAL); // Try again soon.
|
||||
}
|
||||
}, Math.random() * AUTOPLAY_SEARCH_DELTA);
|
||||
}
|
||||
};
|
||||
|
||||
playRecording = function (recording, position, orientation, isManual) {
|
||||
Recording.loadRecording(recording, function (success) {
|
||||
|
|
Loading…
Reference in a new issue