@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.
@@ -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
  }