Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dist/preview release/what's new.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
- Fix submesh recreation when it should not ([Popov72](https://github.com/Popov72)
- Fix `CustomMaterial` and `PBRCustomMaterial` not setting uniforms / samplers / attributes ([Popov72](https://github.com/Popov72)
- Fix bug in NME where deleting a node from a frame would not remove its ports on the outside of a frame
- Fix mesh winding order inversion when merging meshes with overridden side orientation ([drigax](https://github.com/Drigax))

## Breaking changes

Expand Down
1 change: 1 addition & 0 deletions src/Meshes/mesh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4114,6 +4114,7 @@ export class Mesh extends AbstractMesh implements IGetSetVerticesData {

// Setting properties
meshSubclass.checkCollisions = source.checkCollisions;
meshSubclass.overrideMaterialSideOrientation = source.overrideMaterialSideOrientation;

// Cleaning
if (disposeSource) {
Expand Down