@babylonjs/materials 5.0.0-rc.12 → 5.0.0-rc.13
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/cell/cellMaterial.js +2 -2
- package/cell/index.js +1 -1
- package/custom/index.js +2 -2
- package/fire/fireMaterial.js +2 -2
- package/fire/index.js +1 -1
- package/fur/furMaterial.js +2 -2
- package/fur/index.js +1 -1
- package/gradient/gradientMaterial.js +2 -2
- package/gradient/index.js +1 -1
- package/grid/gridMaterial.js +2 -2
- package/grid/index.js +1 -1
- package/index.js +15 -15
- package/lava/index.js +1 -1
- package/lava/lavaMaterial.js +2 -2
- package/legacy/legacy-cell.js +2 -2
- package/legacy/legacy-custom.js +2 -2
- package/legacy/legacy-fire.js +2 -2
- package/legacy/legacy-fur.js +2 -2
- package/legacy/legacy-gradient.js +2 -2
- package/legacy/legacy-grid.js +2 -2
- package/legacy/legacy-lava.js +2 -2
- package/legacy/legacy-mix.js +2 -2
- package/legacy/legacy-normal.js +2 -2
- package/legacy/legacy-shadowOnly.js +2 -2
- package/legacy/legacy-simple.js +2 -2
- package/legacy/legacy-sky.js +2 -2
- package/legacy/legacy-terrain.js +2 -2
- package/legacy/legacy-triPlanar.js +2 -2
- package/legacy/legacy-water.js +2 -2
- package/legacy/legacy.js +2 -2
- package/mix/index.js +1 -1
- package/mix/mixMaterial.js +2 -2
- package/normal/index.js +1 -1
- package/normal/normalMaterial.js +2 -2
- package/package.json +3 -3
- package/shadowOnly/index.js +1 -1
- package/shadowOnly/shadowOnlyMaterial.js +2 -2
- package/simple/index.js +1 -1
- package/simple/simpleMaterial.js +2 -2
- package/sky/index.js +1 -1
- package/sky/skyMaterial.js +2 -2
- package/terrain/index.js +1 -1
- package/terrain/terrainMaterial.js +2 -2
- package/triPlanar/index.js +1 -1
- package/triPlanar/triPlanarMaterial.js +2 -2
- package/water/index.js +1 -1
- package/water/waterMaterial.js +2 -2
package/cell/cellMaterial.js
CHANGED
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./cell.fragment";
|
12
|
-
import "./cell.vertex";
|
11
|
+
import "./cell.fragment.js";
|
12
|
+
import "./cell.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var CellMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(CellMaterialDefines, _super);
|
package/cell/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./cellMaterial";
|
1
|
+
export * from "./cellMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/custom/index.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
export * from "./customMaterial";
|
2
|
-
export * from "./pbrCustomMaterial";
|
1
|
+
export * from "./customMaterial.js";
|
2
|
+
export * from "./pbrCustomMaterial.js";
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/fire/fireMaterial.js
CHANGED
@@ -10,8 +10,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
10
10
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
11
11
|
import { Scene } from "@babylonjs/core/scene.js";
|
12
12
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
13
|
-
import "./fire.fragment";
|
14
|
-
import "./fire.vertex";
|
13
|
+
import "./fire.fragment.js";
|
14
|
+
import "./fire.vertex.js";
|
15
15
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
16
16
|
var FireMaterialDefines = /** @class */ (function (_super) {
|
17
17
|
__extends(FireMaterialDefines, _super);
|
package/fire/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./fireMaterial";
|
1
|
+
export * from "./fireMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/fur/furMaterial.js
CHANGED
@@ -13,8 +13,8 @@ import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
|
13
13
|
import { Scene } from "@babylonjs/core/scene.js";
|
14
14
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
15
15
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
16
|
-
import "./fur.fragment";
|
17
|
-
import "./fur.vertex";
|
16
|
+
import "./fur.fragment.js";
|
17
|
+
import "./fur.vertex.js";
|
18
18
|
var FurMaterialDefines = /** @class */ (function (_super) {
|
19
19
|
__extends(FurMaterialDefines, _super);
|
20
20
|
function FurMaterialDefines() {
|
package/fur/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./furMaterial";
|
1
|
+
export * from "./furMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
@@ -7,8 +7,8 @@ import { PushMaterial } from "@babylonjs/core/Materials/pushMaterial.js";
|
|
7
7
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
8
8
|
import { Scene } from "@babylonjs/core/scene.js";
|
9
9
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
10
|
-
import "./gradient.fragment";
|
11
|
-
import "./gradient.vertex";
|
10
|
+
import "./gradient.fragment.js";
|
11
|
+
import "./gradient.vertex.js";
|
12
12
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
13
13
|
var GradientMaterialDefines = /** @class */ (function (_super) {
|
14
14
|
__extends(GradientMaterialDefines, _super);
|
package/gradient/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./gradientMaterial";
|
1
|
+
export * from "./gradientMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/grid/gridMaterial.js
CHANGED
@@ -9,8 +9,8 @@ import { PushMaterial } from "@babylonjs/core/Materials/pushMaterial.js";
|
|
9
9
|
import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
10
10
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
11
11
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
12
|
-
import "./grid.fragment";
|
13
|
-
import "./grid.vertex";
|
12
|
+
import "./grid.fragment.js";
|
13
|
+
import "./grid.vertex.js";
|
14
14
|
var GridMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(GridMaterialDefines, _super);
|
16
16
|
function GridMaterialDefines() {
|
package/grid/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./gridMaterial";
|
1
|
+
export * from "./gridMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/index.js
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
export * from "./cell/index";
|
3
|
-
export * from "./custom/index";
|
4
|
-
export * from "./fire/index";
|
5
|
-
export * from "./fur/index";
|
6
|
-
export * from "./gradient/index";
|
7
|
-
export * from "./grid/index";
|
8
|
-
export * from "./lava/index";
|
9
|
-
export * from "./mix/index";
|
10
|
-
export * from "./normal/index";
|
11
|
-
export * from "./shadowOnly/index";
|
12
|
-
export * from "./simple/index";
|
13
|
-
export * from "./sky/index";
|
14
|
-
export * from "./terrain/index";
|
15
|
-
export * from "./triPlanar/index";
|
16
|
-
export * from "./water/index";
|
2
|
+
export * from "./cell/index.js";
|
3
|
+
export * from "./custom/index.js";
|
4
|
+
export * from "./fire/index.js";
|
5
|
+
export * from "./fur/index.js";
|
6
|
+
export * from "./gradient/index.js";
|
7
|
+
export * from "./grid/index.js";
|
8
|
+
export * from "./lava/index.js";
|
9
|
+
export * from "./mix/index.js";
|
10
|
+
export * from "./normal/index.js";
|
11
|
+
export * from "./shadowOnly/index.js";
|
12
|
+
export * from "./simple/index.js";
|
13
|
+
export * from "./sky/index.js";
|
14
|
+
export * from "./terrain/index.js";
|
15
|
+
export * from "./triPlanar/index.js";
|
16
|
+
export * from "./water/index.js";
|
17
17
|
//# sourceMappingURL=index.js.map
|
package/lava/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./lavaMaterial";
|
1
|
+
export * from "./lavaMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/lava/lavaMaterial.js
CHANGED
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./lava.fragment";
|
12
|
-
import "./lava.vertex";
|
11
|
+
import "./lava.fragment.js";
|
12
|
+
import "./lava.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var LavaMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(LavaMaterialDefines, _super);
|
package/legacy/legacy-cell.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../cell/index";
|
2
|
+
import * as MatLib from "../cell/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../cell/index";
|
13
|
+
export * from "../cell/index.js";
|
14
14
|
//# sourceMappingURL=legacy-cell.js.map
|
package/legacy/legacy-custom.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../custom/index";
|
2
|
+
import * as MatLib from "../custom/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../custom/index";
|
13
|
+
export * from "../custom/index.js";
|
14
14
|
//# sourceMappingURL=legacy-custom.js.map
|
package/legacy/legacy-fire.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../fire/index";
|
2
|
+
import * as MatLib from "../fire/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../fire/index";
|
13
|
+
export * from "../fire/index.js";
|
14
14
|
//# sourceMappingURL=legacy-fire.js.map
|
package/legacy/legacy-fur.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../fur/index";
|
2
|
+
import * as MatLib from "../fur/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../fur/index";
|
13
|
+
export * from "../fur/index.js";
|
14
14
|
//# sourceMappingURL=legacy-fur.js.map
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../gradient/index";
|
2
|
+
import * as MatLib from "../gradient/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../gradient/index";
|
13
|
+
export * from "../gradient/index.js";
|
14
14
|
//# sourceMappingURL=legacy-gradient.js.map
|
package/legacy/legacy-grid.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../grid/index";
|
2
|
+
import * as MatLib from "../grid/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../grid/index";
|
13
|
+
export * from "../grid/index.js";
|
14
14
|
//# sourceMappingURL=legacy-grid.js.map
|
package/legacy/legacy-lava.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../lava/index";
|
2
|
+
import * as MatLib from "../lava/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../lava/index";
|
13
|
+
export * from "../lava/index.js";
|
14
14
|
//# sourceMappingURL=legacy-lava.js.map
|
package/legacy/legacy-mix.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../mix/index";
|
2
|
+
import * as MatLib from "../mix/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../mix/index";
|
13
|
+
export * from "../mix/index.js";
|
14
14
|
//# sourceMappingURL=legacy-mix.js.map
|
package/legacy/legacy-normal.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../normal/index";
|
2
|
+
import * as MatLib from "../normal/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../normal/index";
|
13
|
+
export * from "../normal/index.js";
|
14
14
|
//# sourceMappingURL=legacy-normal.js.map
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../shadowOnly/index";
|
2
|
+
import * as MatLib from "../shadowOnly/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../shadowOnly/index";
|
13
|
+
export * from "../shadowOnly/index.js";
|
14
14
|
//# sourceMappingURL=legacy-shadowOnly.js.map
|
package/legacy/legacy-simple.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../simple/index";
|
2
|
+
import * as MatLib from "../simple/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../simple/index";
|
13
|
+
export * from "../simple/index.js";
|
14
14
|
//# sourceMappingURL=legacy-simple.js.map
|
package/legacy/legacy-sky.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../sky/index";
|
2
|
+
import * as MatLib from "../sky/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../sky/index";
|
13
|
+
export * from "../sky/index.js";
|
14
14
|
//# sourceMappingURL=legacy-sky.js.map
|
package/legacy/legacy-terrain.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../terrain/index";
|
2
|
+
import * as MatLib from "../terrain/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../terrain/index";
|
13
|
+
export * from "../terrain/index.js";
|
14
14
|
//# sourceMappingURL=legacy-terrain.js.map
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../triPlanar/index";
|
2
|
+
import * as MatLib from "../triPlanar/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../triPlanar/index";
|
13
|
+
export * from "../triPlanar/index.js";
|
14
14
|
//# sourceMappingURL=legacy-triPlanar.js.map
|
package/legacy/legacy-water.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../water/index";
|
2
|
+
import * as MatLib from "../water/index.js";
|
3
3
|
/**
|
4
4
|
* This is the entry point for the UMD module.
|
5
5
|
* The entry point for a future ESM package should be index.ts
|
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
|
|
10
10
|
globalObject.BABYLON[key] = MatLib[key];
|
11
11
|
}
|
12
12
|
}
|
13
|
-
export * from "../water/index";
|
13
|
+
export * from "../water/index.js";
|
14
14
|
//# sourceMappingURL=legacy-water.js.map
|
package/legacy/legacy.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/* eslint-disable import/no-internal-modules */
|
2
|
-
import * as MatLib from "../index";
|
2
|
+
import * as MatLib from "../index.js";
|
3
3
|
/**
|
4
4
|
* Legacy support, defining window.BABYLON.GridMaterial... (global variable).
|
5
5
|
*
|
@@ -13,5 +13,5 @@ if (typeof globalObject !== "undefined") {
|
|
13
13
|
globalObject.BABYLON[mat] = MatLib[mat];
|
14
14
|
}
|
15
15
|
}
|
16
|
-
export * from "../index";
|
16
|
+
export * from "../index.js";
|
17
17
|
//# sourceMappingURL=legacy.js.map
|
package/mix/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./mixMaterial";
|
1
|
+
export * from "./mixMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/mix/mixMaterial.js
CHANGED
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./mix.fragment";
|
12
|
-
import "./mix.vertex";
|
11
|
+
import "./mix.fragment.js";
|
12
|
+
import "./mix.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var MixMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(MixMaterialDefines, _super);
|
package/normal/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./normalMaterial";
|
1
|
+
export * from "./normalMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/normal/normalMaterial.js
CHANGED
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./normal.fragment";
|
12
|
-
import "./normal.vertex";
|
11
|
+
import "./normal.fragment.js";
|
12
|
+
import "./normal.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var NormalMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(NormalMaterialDefines, _super);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/materials",
|
3
|
-
"version": "5.0.0-rc.
|
3
|
+
"version": "5.0.0-rc.13",
|
4
4
|
"main": "index.js",
|
5
5
|
"module": "index.js",
|
6
6
|
"types": "index.d.ts",
|
@@ -15,11 +15,11 @@
|
|
15
15
|
"build": "npm run clean && npm run compile",
|
16
16
|
"clean": "rimraf dist && rimraf *.tsbuildinfo && rimraf \"./**/*.!(md|json|build.json)\"",
|
17
17
|
"compile": "tsc -b tsconfig.build.json",
|
18
|
-
"postcompile": "build-tools -c add-js-to-es6
|
18
|
+
"postcompile": "build-tools -c add-js-to-es6",
|
19
19
|
"prepublishOnly": "build-tools -c prepare-es6-build"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@babylonjs/core": "^5.0.0-rc.
|
22
|
+
"@babylonjs/core": "^5.0.0-rc.13",
|
23
23
|
"tslib": "^2.3.1"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
package/shadowOnly/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./shadowOnlyMaterial";
|
1
|
+
export * from "./shadowOnlyMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
@@ -7,8 +7,8 @@ import { PushMaterial } from "@babylonjs/core/Materials/pushMaterial.js";
|
|
7
7
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
8
8
|
import { Scene } from "@babylonjs/core/scene.js";
|
9
9
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
10
|
-
import "./shadowOnly.fragment";
|
11
|
-
import "./shadowOnly.vertex";
|
10
|
+
import "./shadowOnly.fragment.js";
|
11
|
+
import "./shadowOnly.vertex.js";
|
12
12
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
13
13
|
var ShadowOnlyMaterialDefines = /** @class */ (function (_super) {
|
14
14
|
__extends(ShadowOnlyMaterialDefines, _super);
|
package/simple/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./simpleMaterial";
|
1
|
+
export * from "./simpleMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/simple/simpleMaterial.js
CHANGED
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./simple.fragment";
|
12
|
-
import "./simple.vertex";
|
11
|
+
import "./simple.fragment.js";
|
12
|
+
import "./simple.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var SimpleMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(SimpleMaterialDefines, _super);
|
package/sky/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./skyMaterial";
|
1
|
+
export * from "./skyMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/sky/skyMaterial.js
CHANGED
@@ -7,8 +7,8 @@ import { PushMaterial } from "@babylonjs/core/Materials/pushMaterial.js";
|
|
7
7
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
8
8
|
import { Scene } from "@babylonjs/core/scene.js";
|
9
9
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
10
|
-
import "./sky.fragment";
|
11
|
-
import "./sky.vertex";
|
10
|
+
import "./sky.fragment.js";
|
11
|
+
import "./sky.vertex.js";
|
12
12
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
13
13
|
/** @hidden */
|
14
14
|
var SkyMaterialDefines = /** @class */ (function (_super) {
|
package/terrain/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./terrainMaterial";
|
1
|
+
export * from "./terrainMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./terrain.fragment";
|
12
|
-
import "./terrain.vertex";
|
11
|
+
import "./terrain.fragment.js";
|
12
|
+
import "./terrain.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var TerrainMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(TerrainMaterialDefines, _super);
|
package/triPlanar/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./triPlanarMaterial";
|
1
|
+
export * from "./triPlanarMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
@@ -8,8 +8,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
8
8
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
9
9
|
import { Scene } from "@babylonjs/core/scene.js";
|
10
10
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
11
|
-
import "./triplanar.fragment";
|
12
|
-
import "./triplanar.vertex";
|
11
|
+
import "./triplanar.fragment.js";
|
12
|
+
import "./triplanar.vertex.js";
|
13
13
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
14
14
|
var TriPlanarMaterialDefines = /** @class */ (function (_super) {
|
15
15
|
__extends(TriPlanarMaterialDefines, _super);
|
package/water/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from "./waterMaterial";
|
1
|
+
export * from "./waterMaterial.js";
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/water/waterMaterial.js
CHANGED
@@ -14,8 +14,8 @@ import { MaterialFlags } from "@babylonjs/core/Materials/materialFlags.js";
|
|
14
14
|
import { VertexBuffer } from "@babylonjs/core/Buffers/buffer.js";
|
15
15
|
import { Scene } from "@babylonjs/core/scene.js";
|
16
16
|
import { RegisterClass } from "@babylonjs/core/Misc/typeStore.js";
|
17
|
-
import "./water.fragment";
|
18
|
-
import "./water.vertex";
|
17
|
+
import "./water.fragment.js";
|
18
|
+
import "./water.vertex.js";
|
19
19
|
import { EffectFallbacks } from "@babylonjs/core/Materials/effectFallbacks.js";
|
20
20
|
import { CreateGround } from "@babylonjs/core/Meshes/Builders/groundBuilder.js";
|
21
21
|
var WaterMaterialDefines = /** @class */ (function (_super) {
|