Feature: projection screen invisible before starting

This commit is contained in:
Dejvino 2025-12-30 21:47:47 +00:00
parent c17311036b
commit 3dcfdaff5a

View File

@ -110,7 +110,7 @@ export class ProjectionScreen extends SceneFeature {
onComplete: null onComplete: null
}; };
state.originalScreenIntensity = 2.0; state.originalScreenIntensity = 2.0;
state.screenOpacity = 1.0; state.screenOpacity = 0.5;
// Ensure video element exists // Ensure video element exists
if (!state.videoElement) { if (!state.videoElement) {
@ -136,6 +136,7 @@ export class ProjectionScreen extends SceneFeature {
state.scene.add(this.mesh); state.scene.add(this.mesh);
state.tvScreen = this.mesh; state.tvScreen = this.mesh;
state.tvScreen.visible = false;
// --- Screen Light --- // --- Screen Light ---
// A light that projects the screen's color/ambiance into the room // A light that projects the screen's color/ambiance into the room