From b11e1e37ed20d48b0a34a3f61d9e143344b40bac Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Tue, 13 Jan 2026 14:02:53 +0900 Subject: [PATCH] [backport core/1.36] fix: continue rendering when 3D animation is playing (#7994) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #7836 to `core/1.36` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7994-backport-core-1-36-fix-continue-rendering-when-3D-animation-is-playing-2e76d73d3650818ca4d4fdf5825f276d) by [Unito](https://www.unito.io) Co-authored-by: Terry Jia --- src/extensions/core/load3d/Load3d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/extensions/core/load3d/Load3d.ts b/src/extensions/core/load3d/Load3d.ts index 2fb8ff6bb..c7673a60f 100644 --- a/src/extensions/core/load3d/Load3d.ts +++ b/src/extensions/core/load3d/Load3d.ts @@ -392,7 +392,8 @@ class Load3d { this.STATUS_MOUSE_ON_SCENE || this.STATUS_MOUSE_ON_VIEWER || this.isRecording() || - !this.INITIAL_RENDER_DONE + !this.INITIAL_RENDER_DONE || + this.animationManager.isAnimationPlaying ) }