From ed2dd70c46c1c3cd7f66f5877bfb2ad8166fa10c Mon Sep 17 00:00:00 2001 From: "Raoul v. R." Date: Sat, 10 Aug 2024 17:49:34 +0200 Subject: [PATCH] Always update value --- src/core/io/Output.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/core/io/Output.ts b/src/core/io/Output.ts index 558ea409d..645faad1d 100644 --- a/src/core/io/Output.ts +++ b/src/core/io/Output.ts @@ -148,11 +148,7 @@ export class Output extends EventDispatcher implements Disposable, if(value instanceof RenderTargetResource) { - if(this.renderTargets.get(key) !== value) { - - this.renderTargets.set(key, value); - - } + this.renderTargets.set(key, value); } else {