mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:38: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.
|
// Automatic download to High Fidelity.
|
||||||
function startAutoDownload() {
|
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.
|
// User must be able to write to Asset Server.
|
||||||
if (!canWriteAssets) {
|
if (!canWriteAssets) {
|
||||||
console.log("ERROR: Clara.io FBX: File download cancelled because no permissions to write to Asset Server");
|
console.log("ERROR: Clara.io FBX: File download cancelled because no permissions to write to Asset Server");
|
||||||
|
|
Loading…
Reference in a new issue