Increment frame version when emitting frame without full scene data

This commit is contained in:
2026-05-18 13:25:17 +02:00
parent 5cd09bc959
commit d04894532c

View File

@@ -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;
}