babylonjs-addons 8.30.1 → 8.30.2
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.
@@ -2957,6 +2957,7 @@ export class Atmosphere implements IDisposable {
|
|
2957
2957
|
private _aerialPerspectiveRenderingGroup;
|
2958
2958
|
private _globeAtmosphereRenderingGroup;
|
2959
2959
|
private _isEnabled;
|
2960
|
+
private _aerialPerspectiveLutHasBeenRendered;
|
2960
2961
|
private _hasRenderedMultiScatteringLut;
|
2961
2962
|
private _multiScatteringEffectWrapper;
|
2962
2963
|
private _multiScatteringLutRenderTarget;
|
@@ -2978,6 +2979,10 @@ export class Atmosphere implements IDisposable {
|
|
2978
2979
|
* @returns True if the atmosphere is supported, false otherwise.
|
2979
2980
|
*/
|
2980
2981
|
static IsSupported(engine: AbstractEngine): boolean;
|
2982
|
+
/**
|
2983
|
+
* The unique ID of this atmosphere instance.
|
2984
|
+
*/
|
2985
|
+
readonly uniqueId: number;
|
2981
2986
|
/**
|
2982
2987
|
* Called after the atmosphere variables have been updated for the specified camera.
|
2983
2988
|
*/
|
@@ -3168,7 +3173,6 @@ export class Atmosphere implements IDisposable {
|
|
3168
3173
|
* Gets the camera-related variables for this atmosphere. Updated each frame.
|
3169
3174
|
*/
|
3170
3175
|
get cameraAtmosphereVariables(): AtmospherePerCameraVariables;
|
3171
|
-
readonly uniqueId: number;
|
3172
3176
|
/**
|
3173
3177
|
* Constructs the {@link Atmosphere}.
|
3174
3178
|
* @param name - The name of this instance.
|
@@ -3267,6 +3271,7 @@ export class Atmosphere implements IDisposable {
|
|
3267
3271
|
* Draws the aerial perspective LUT using {@link EffectWrapper} and {@link EffectRenderer}.
|
3268
3272
|
*/
|
3269
3273
|
private _drawAerialPerspectiveLut;
|
3274
|
+
private _clearAerialPerspectiveLut;
|
3270
3275
|
/**
|
3271
3276
|
* Draws the sky view LUT using {@link EffectWrapper} and {@link EffectRenderer}.
|
3272
3277
|
*/
|
@@ -6149,6 +6154,7 @@ declare module ADDONS {
|
|
6149
6154
|
private _aerialPerspectiveRenderingGroup;
|
6150
6155
|
private _globeAtmosphereRenderingGroup;
|
6151
6156
|
private _isEnabled;
|
6157
|
+
private _aerialPerspectiveLutHasBeenRendered;
|
6152
6158
|
private _hasRenderedMultiScatteringLut;
|
6153
6159
|
private _multiScatteringEffectWrapper;
|
6154
6160
|
private _multiScatteringLutRenderTarget;
|
@@ -6170,6 +6176,10 @@ declare module ADDONS {
|
|
6170
6176
|
* @returns True if the atmosphere is supported, false otherwise.
|
6171
6177
|
*/
|
6172
6178
|
static IsSupported(engine: BABYLON.AbstractEngine): boolean;
|
6179
|
+
/**
|
6180
|
+
* The unique ID of this atmosphere instance.
|
6181
|
+
*/
|
6182
|
+
readonly uniqueId: number;
|
6173
6183
|
/**
|
6174
6184
|
* Called after the atmosphere variables have been updated for the specified camera.
|
6175
6185
|
*/
|
@@ -6360,7 +6370,6 @@ declare module ADDONS {
|
|
6360
6370
|
* Gets the camera-related variables for this atmosphere. Updated each frame.
|
6361
6371
|
*/
|
6362
6372
|
get cameraAtmosphereVariables(): AtmospherePerCameraVariables;
|
6363
|
-
readonly uniqueId: number;
|
6364
6373
|
/**
|
6365
6374
|
* Constructs the {@link Atmosphere}.
|
6366
6375
|
* @param name - The name of this instance.
|
@@ -6459,6 +6468,7 @@ declare module ADDONS {
|
|
6459
6468
|
* Draws the aerial perspective LUT using {@link EffectWrapper} and {@link EffectRenderer}.
|
6460
6469
|
*/
|
6461
6470
|
private _drawAerialPerspectiveLut;
|
6471
|
+
private _clearAerialPerspectiveLut;
|
6462
6472
|
/**
|
6463
6473
|
* Draws the sky view LUT using {@link EffectWrapper} and {@link EffectRenderer}.
|
6464
6474
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-addons",
|
3
|
-
"version": "8.30.
|
3
|
+
"version": "8.30.2",
|
4
4
|
"main": "babylonjs.addons.min.js",
|
5
5
|
"types": "babylonjs.addons.module.d.ts",
|
6
6
|
"files": [
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"test:escheck": "es-check es6 ./babylonjs.addons.js"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
|
-
"babylonjs": "^8.30.
|
18
|
+
"babylonjs": "^8.30.2"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|