From d04894532c355c382a889b5c8513a63408bb6d4e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 18 May 2026 13:25:17 +0200 Subject: [PATCH] Increment frame version when emitting frame without full scene data --- src/runtime-three/editor-simulation-controller.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runtime-three/editor-simulation-controller.ts b/src/runtime-three/editor-simulation-controller.ts index 5a747764..513f0ffa 100644 --- a/src/runtime-three/editor-simulation-controller.ts +++ b/src/runtime-three/editor-simulation-controller.ts @@ -349,6 +349,9 @@ export class EditorSimulationController { private syncRuntimeSceneToCurrentClock() { if (this.runtimeScene === null || this.currentClock === null) { + if (this.currentClock !== null) { + this.frameVersion += 1; + } this.emitFrame(); return; }