babylonjs-addons 8.47.0 → 8.47.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.
package/babylonjs.addons.d.ts
CHANGED
|
@@ -2050,6 +2050,10 @@ declare module ADDONS {
|
|
|
2050
2050
|
* @throws if the LUT has been disposed.
|
|
2051
2051
|
*/
|
|
2052
2052
|
get renderTarget(): BABYLON.RenderTargetTexture;
|
|
2053
|
+
/**
|
|
2054
|
+
* True if the LUT data has been read back from the GPU.
|
|
2055
|
+
*/
|
|
2056
|
+
get hasLutData(): boolean;
|
|
2053
2057
|
/**
|
|
2054
2058
|
* Constructs the {@link TransmittanceLut}.
|
|
2055
2059
|
* @param atmosphere - The atmosphere that owns this LUT.
|
|
@@ -3050,6 +3054,20 @@ declare module ADDONS {
|
|
|
3050
3054
|
}
|
|
3051
3055
|
|
|
3052
3056
|
|
|
3057
|
+
/** @internal */
|
|
3058
|
+
export var transmittancePixelShaderWGSL: {
|
|
3059
|
+
name: string;
|
|
3060
|
+
shader: string;
|
|
3061
|
+
};
|
|
3062
|
+
|
|
3063
|
+
|
|
3064
|
+
/** @internal */
|
|
3065
|
+
export var fullscreenTriangleVertexShaderWGSL: {
|
|
3066
|
+
name: string;
|
|
3067
|
+
shader: string;
|
|
3068
|
+
};
|
|
3069
|
+
|
|
3070
|
+
|
|
3053
3071
|
/** @internal */
|
|
3054
3072
|
export var atmosphereUboDeclarationWGSL: {
|
|
3055
3073
|
name: string;
|