mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Prepare only one download at a time
This commit is contained in:
parent
288c069687
commit
d45e6f00cb
1 changed files with 6 additions and 0 deletions
|
@ -138,6 +138,12 @@
|
|||
// Automatic download to High Fidelity.
|
||||
function startAutoDownload() {
|
||||
|
||||
// One file request at a time.
|
||||
if (isDownloading) {
|
||||
console.log("WARNIKNG: Clara.io FBX: Prepare only one download at a time");
|
||||
return;
|
||||
}
|
||||
|
||||
// User must be able to write to Asset Server.
|
||||
if (!canWriteAssets) {
|
||||
console.log("ERROR: Clara.io FBX: File download cancelled because no permissions to write to Asset Server");
|
||||
|
|
Loading…
Reference in a new issue