@babylonjs/core 6.45.0 → 6.45.1
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/Engines/engine.d.ts +1 -1
- package/Engines/thinEngine.js +2 -2
- package/Engines/thinEngine.js.map +1 -1
- package/Engines/webgpuEngine.js +2 -15
- package/Engines/webgpuEngine.js.map +1 -1
- package/Materials/Node/nodeMaterial.js +3 -0
- package/Materials/Node/nodeMaterial.js.map +1 -1
- package/package.json +1 -1
|
@@ -1699,6 +1699,9 @@ export class NodeMaterial extends PushMaterial {
|
|
|
1699
1699
|
if (source.forceAlphaBlending !== undefined) {
|
|
1700
1700
|
this.forceAlphaBlending = source.forceAlphaBlending;
|
|
1701
1701
|
}
|
|
1702
|
+
if (source.alphaMode !== undefined) {
|
|
1703
|
+
this.alphaMode = source.alphaMode;
|
|
1704
|
+
}
|
|
1702
1705
|
if (!merge) {
|
|
1703
1706
|
this._mode = source.mode ?? NodeMaterialModes.Material;
|
|
1704
1707
|
}
|