babylonjs-addons 9.11.0 → 9.12.0

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.
@@ -2205,10 +2205,10 @@ export const FitStrategy: {
2205
2205
  }
2206
2206
  declare module "babylonjs-addons/atmosphere/transmittanceLut" {
2207
2207
  import { Atmosphere } from "babylonjs-addons/atmosphere/atmosphere";
2208
- import { DirectionalLight } from "babylonjs/Lights/directionalLight";
2208
+ import { DirectionalLight } from "babylonjs/Lights/directionalLight.pure";
2209
2209
  import { IColor3Like, IVector3Like } from "babylonjs/Maths/math.like";
2210
- import { Observable } from "babylonjs/Misc/observable";
2211
- import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture";
2210
+ import { Observable } from "babylonjs/Misc/observable.pure";
2211
+ import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture.pure";
2212
2212
  /**
2213
2213
  * The transmittance LUT can be used to get the radiance from an external light source arriving a given point, accounting for atmospheric scattering.
2214
2214
  */
@@ -2312,7 +2312,7 @@ export * from "babylonjs-addons/atmosphere/transmittanceLut";
2312
2312
  declare module "babylonjs-addons/atmosphere/diffuseSkyIrradianceLut" {
2313
2313
  import { Atmosphere } from "babylonjs-addons/atmosphere/atmosphere";
2314
2314
  import { IColor3Like, IVector3Like } from "babylonjs/Maths/math.like";
2315
- import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture";
2315
+ import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture.pure";
2316
2316
  /**
2317
2317
  * The diffuse sky irradiance LUT is used to query the diffuse irradiance at a specified position.
2318
2318
  */
@@ -2380,7 +2380,7 @@ export class DiffuseSkyIrradianceLut {
2380
2380
 
2381
2381
  }
2382
2382
  declare module "babylonjs-addons/atmosphere/atmospherePhysicalPropertiesOptions" {
2383
- import { Vector3 } from "babylonjs/Maths/math.vector";
2383
+ import { Vector3 } from "babylonjs/Maths/math.vector.pure";
2384
2384
  /**
2385
2385
  * The options for the {@link AtmospherePhysicalProperties} that describe the planet, the atmosphere, and scattering.
2386
2386
  */
@@ -2436,8 +2436,8 @@ export interface IAtmospherePhysicalPropertiesOptions {
2436
2436
  }
2437
2437
  declare module "babylonjs-addons/atmosphere/atmospherePhysicalProperties" {
2438
2438
  import { IAtmospherePhysicalPropertiesOptions } from "babylonjs-addons/atmosphere/atmospherePhysicalPropertiesOptions";
2439
- import { Observable } from "babylonjs/Misc/observable";
2440
- import { Vector3 } from "babylonjs/Maths/math.vector";
2439
+ import { Observable } from "babylonjs/Misc/observable.pure";
2440
+ import { Vector3 } from "babylonjs/Maths/math.vector.pure";
2441
2441
  /**
2442
2442
  * Describes the physical properties of the atmosphere. Assumes a spherical planet.
2443
2443
  * - "radius" values describe a distance from the planet's center.
@@ -2592,7 +2592,7 @@ export class AtmospherePhysicalProperties {
2592
2592
 
2593
2593
  }
2594
2594
  declare module "babylonjs-addons/atmosphere/atmospherePerCameraVariables" {
2595
- import { Camera } from "babylonjs/Cameras/camera";
2595
+ import { Camera } from "babylonjs/Cameras/camera.pure";
2596
2596
  import { IMatrixLike, IVector3Like, IVector4Like } from "babylonjs/Maths/math.like";
2597
2597
  /**
2598
2598
  * Variables that are used to render the atmosphere and are computed per-camera.
@@ -2704,10 +2704,10 @@ export class AtmospherePerCameraVariables {
2704
2704
  }
2705
2705
  declare module "babylonjs-addons/atmosphere/atmospherePBRMaterialPlugin" {
2706
2706
  import { Atmosphere } from "babylonjs-addons/atmosphere/atmosphere";
2707
- import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
2708
- import { Material } from "babylonjs/Materials/material";
2707
+ import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture.pure";
2708
+ import { Material } from "babylonjs/Materials/material.pure";
2709
2709
  import { MaterialDefines } from "babylonjs/Materials/materialDefines";
2710
- import { MaterialPluginBase } from "babylonjs/Materials/materialPluginBase";
2710
+ import { MaterialPluginBase } from "babylonjs/Materials/materialPluginBase.pure";
2711
2711
  import { Nullable } from "babylonjs/types";
2712
2712
  import { UniformBuffer } from "babylonjs/Materials/uniformBuffer";
2713
2713
  import { ShaderLanguage } from "babylonjs/Materials/shaderLanguage";
@@ -2926,20 +2926,20 @@ export interface IAtmosphereOptions {
2926
2926
 
2927
2927
  }
2928
2928
  declare module "babylonjs-addons/atmosphere/atmosphere" {
2929
- import { AbstractEngine } from "babylonjs/Engines/abstractEngine";
2929
+ import { AbstractEngine } from "babylonjs/Engines/abstractEngine.pure";
2930
2930
  import { AtmospherePerCameraVariables } from "babylonjs-addons/atmosphere/atmospherePerCameraVariables";
2931
2931
  import { AtmospherePhysicalProperties } from "babylonjs-addons/atmosphere/atmospherePhysicalProperties";
2932
- import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
2933
- import { Camera } from "babylonjs/Cameras/camera";
2932
+ import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture.pure";
2933
+ import { Camera } from "babylonjs/Cameras/camera.pure";
2934
2934
  import { DeepImmutable, Nullable } from "babylonjs/types";
2935
2935
  import { DiffuseSkyIrradianceLut } from "babylonjs-addons/atmosphere/diffuseSkyIrradianceLut";
2936
- import { DirectionalLight } from "babylonjs/Lights/directionalLight";
2937
- import { Effect } from "babylonjs/Materials/effect";
2936
+ import { DirectionalLight } from "babylonjs/Lights/directionalLight.pure";
2937
+ import { Effect } from "babylonjs/Materials/effect.pure";
2938
2938
  import { IAtmosphereOptions } from "babylonjs-addons/atmosphere/atmosphereOptions";
2939
2939
  import { IColor3Like, IVector3Like } from "babylonjs/Maths/math.like";
2940
- import { IDisposable, Scene } from "babylonjs/scene";
2941
- import { Observable } from "babylonjs/Misc/observable";
2942
- import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture";
2940
+ import { IDisposable, Scene } from "babylonjs/scene.pure";
2941
+ import { Observable } from "babylonjs/Misc/observable.pure";
2942
+ import { RenderTargetTexture } from "babylonjs/Materials/Textures/renderTargetTexture.pure";
2943
2943
  import { TransmittanceLut } from "babylonjs-addons/atmosphere/transmittanceLut";
2944
2944
  import { UniformBuffer } from "babylonjs/Materials/uniformBuffer";
2945
2945
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-addons",
3
- "version": "9.11.0",
3
+ "version": "9.12.0",
4
4
  "main": "babylonjs.addons.min.js",
5
5
  "types": "babylonjs.addons.module.d.ts",
6
6
  "files": [
@@ -16,7 +16,7 @@
16
16
  "test:escheck": "es-check es6 ./babylonjs.addons.js"
17
17
  },
18
18
  "dependencies": {
19
- "babylonjs": "9.11.0"
19
+ "babylonjs": "9.12.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/addons": "1.0.0",