I have the current setup:
- 1 scene
 - Inside the scene, there are multiple “environments”/“rooms” with an 
EnvSettingsscript attached to them. This lets us change things like the skybox texture, mip levels, lightmapper bake settings and more. 
What we expect this to do:
- 
EnvSettings.applymethod updates all rendering/lighting settings as it should 
What is currently happening:
- 
EnvSettings.applychanges are being ignored, and the ones from the editor settings are being favored/applied instead. The biggest difference lies with the cubemap mip: if it was meant to be set to 2, it would instead look like the setting on 3 or 4. 
Note:
- All cubemaps are prefiltered + preloaded
 
Here’s a snippet of how the EnvSettings script looks like:
var EnvSettings = pc.createScript('envSettings');
// Cubemap
EnvSettings.attributes.add('ambientLightColor', { type: 'rgb', title: 'Ambient Color' });
EnvSettings.attributes.add('skybox', { type: 'asset', assetType: 'cubemap', title: 'Cubemap' });
EnvSettings.attributes.add('skyboxIntensity', { type: 'number', title: 'Cubemap Intensity' });
EnvSettings.attributes.add('skyboxMip', { type: 'number', title: 'Cubemap Mip' });
EnvSettings.attributes.add('exposure', { type: 'number', title: 'Exposure' });
EnvSettings.attributes.add('fogDensity', { type: 'number', title: 'Fog Density' });
EnvSettings.attributes.add('fogColor', { type: 'rgb', title: 'Fog Color' });
// Lightmapper
EnvSettings.attributes.add('lightmapFilterEnabled', { type: 'boolean', title: 'Lightmap Filter' });
EnvSettings.attributes.add('lightmapFilterSmoothness', { type: 'number', title: 'Lightmap Filter Smoothness' });
EnvSettings.attributes.add('ambientBake', { type: 'boolean', title: 'Ambient Bake' });
EnvSettings.attributes.add('ambientBakeNumSamples', { type: 'number', title: 'Ambient Bake Samples' });
EnvSettings.prototype.initialize = function () {
    this.skybox.loadFaces = true;
};
EnvSettings.prototype.apply = function () {
    const app = this.app;
    const scene = app.scene;
    const applyOnLoad = function () {
        scene.setSkybox(this.skybox.resources);
        scene.envAtlas = pc.EnvLighting.generatePrefilteredAtlas(this.skybox.resources.slice(1));
        scene.skyboxIntensity = this.skyboxIntensity;
        scene.skyboxMip = 1;
        scene.ambientLight.set(this.ambientLightColor.r, this.ambientLightColor.g, this.ambientLightColor.b, 1);
        scene.exposure = this.exposure;
        scene.fogColor.set(this.fogColor.r, this.fogColor.g, this.fogColor.b, 1);
        scene.fogDensity = this.fogDensity;
        scene.lightmapFilterEnabled = this.lightmapFilterEnabled;
        scene.lightmapFilterSmoothness = this.lightmapFilterSmoothness;
        scene.ambientBake = this.ambientBake;
        scene.ambientBakeNumSamples = this.ambientBakeNumSamples;
        app.lightmapper.bake();
    }.bind(this);
    if (this.skybox.loaded) {
        applyOnLoad();
    }
    else {
        // Triggers when the skybox asset finishes loading
        this.skybox.on("load", applyOnLoad);
        app.assets.load(this.skybox);
    }
};
Is there anything I’m doing wrong here?
