diff --git a/src/core/textures/Texture.ts b/src/core/textures/Texture.ts index e4e2b615..0e06aec8 100644 --- a/src/core/textures/Texture.ts +++ b/src/core/textures/Texture.ts @@ -292,6 +292,10 @@ export abstract class Texture extends EventEmitter { } load(): void { + if (this.maxRetryCount === null && this.retryCount > 0) { + return; + } + if (this.maxRetryCount !== null && this.retryCount > this.maxRetryCount) { // We've exceeded the max retry count, do not attempt to load again return;