@mml-io/3d-web-client-core 0.0.0-experimental-8cb6e06-20250422 → 0.0.0-experimental-928ce80-20250424
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +8 -0
- package/build/index.js.map +2 -2
- package/build/rendering/composer.d.ts +1 -0
- package/package.json +3 -3
package/build/index.js
CHANGED
@@ -5536,6 +5536,7 @@ var Composer = class {
|
|
5536
5536
|
}
|
5537
5537
|
this.updateSkyboxAndEnvValues();
|
5538
5538
|
this.updateAmbientLightValues();
|
5539
|
+
this.updateBloomValues();
|
5539
5540
|
this.updateSunValues();
|
5540
5541
|
this.updateFogValues();
|
5541
5542
|
}
|
@@ -5808,6 +5809,13 @@ var Composer = class {
|
|
5808
5809
|
this.updateSkyboxRotation();
|
5809
5810
|
}
|
5810
5811
|
}
|
5812
|
+
updateBloomValues() {
|
5813
|
+
var _a, _b;
|
5814
|
+
if (typeof ((_b = (_a = this.environmentConfiguration) == null ? void 0 : _a.postProcessing) == null ? void 0 : _b.bloomIntensity) === "number") {
|
5815
|
+
extrasValues.bloom = this.environmentConfiguration.postProcessing.bloomIntensity;
|
5816
|
+
}
|
5817
|
+
this.bloomEffect.intensity = extrasValues.bloom;
|
5818
|
+
}
|
5811
5819
|
updateAmbientLightValues() {
|
5812
5820
|
var _a, _b;
|
5813
5821
|
if (typeof ((_b = (_a = this.environmentConfiguration) == null ? void 0 : _a.ambientLight) == null ? void 0 : _b.intensity) === "number") {
|