diff --git a/packages/frontend/src/world/room/env.ts b/packages/frontend/src/world/room/env.ts index 8c34dedb6c..099c054a25 100644 --- a/packages/frontend/src/world/room/env.ts +++ b/packages/frontend/src/world/room/env.ts @@ -70,6 +70,7 @@ export class SimpleEnvManager extends EnvManager { private pillarMaterials: Record<'nw' | 'ne' | 'sw' | 'se', BABYLON.PBRMaterial> | null = null; private ceilingMaterial: BABYLON.PBRMaterial | null = null; private floorMaterial: BABYLON.PBRMaterial | null = null; + public envMapIndoor: BABYLON.CubeTexture | null = null; constructor(onMeshUpdatedCallback?: ((meshes: BABYLON.AbstractMesh[]) => void) | null) { super(onMeshUpdatedCallback);