@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/Collisions/pickingInfo.js +18 -8
- package/Collisions/pickingInfo.js.map +1 -1
- package/Engines/thinEngine.js +2 -2
- package/Engines/thinEngine.js.map +1 -1
- package/Materials/PBR/pbrBaseMaterial.d.ts +4 -0
- package/Materials/PBR/pbrBaseMaterial.js +14 -7
- package/Materials/PBR/pbrBaseMaterial.js.map +1 -1
- package/Materials/clipPlaneMaterialHelper.js +1 -1
- package/Materials/clipPlaneMaterialHelper.js.map +1 -1
- package/Maths/math.vector.d.ts +16 -16
- package/Maths/math.vector.js +16 -16
- package/Maths/math.vector.js.map +1 -1
- package/Meshes/mesh.js +3 -1
- package/Meshes/mesh.js.map +1 -1
- package/Sprites/spriteManager.d.ts +4 -0
- package/Sprites/spriteManager.js +9 -0
- package/Sprites/spriteManager.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
}
|