@babylonjs/core 5.33.0 → 5.33.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/Meshes/mesh.js CHANGED
@@ -3228,7 +3228,9 @@ export class Mesh extends AbstractMesh {
3228
3228
  mesh.alphaIndex = parsedMesh.alphaIndex;
3229
3229
  }
3230
3230
  mesh.receiveShadows = parsedMesh.receiveShadows;
3231
- mesh.billboardMode = parsedMesh.billboardMode;
3231
+ if (parsedMesh.billboardMode !== undefined) {
3232
+ mesh.billboardMode = parsedMesh.billboardMode;
3233
+ }
3232
3234
  if (parsedMesh.visibility !== undefined) {
3233
3235
  mesh.visibility = parsedMesh.visibility;
3234
3236
  }