fix(3d-nds): set camera to null when switching to 2d, don't check for lags before app is booted and lower fps threshold to 30

This commit is contained in:
2026-03-15 17:44:43 +01:00
parent 623401ca36
commit fa73841098
2 changed files with 3 additions and 2 deletions

View File

@@ -70,6 +70,7 @@ export const useAppStore = defineStore("app", {
this.ready = mode === "2d";
this.settings.renderingMode = mode;
this.lagDetected = false;
if (mode === "2d") this.camera = null;
this.save();
},