Imported meshes are scaled by -1 in horizontally

Hello,
It appears that recently (within the last 7 days) something has been changes and now my imported meshes are scaled by negative one. I am wondering if there is a simple way to work-around the change
Thank you,
David

I guess you are using OBJ right?
We introduced a breaking change to fix a bug. To fix your issue and get back to the previous behavior:

BABYLON.ObjFileLoader.USE_LEGACY_BEHAVIOR = true;
2 Likes

@Deltakosh Thank you ! That works great. There was a minor typo - I changed ObjFileLoader to OBJFileLoader. So the line that I added is
BABYLON.OBJFileLoader.USE_LEGACY_BEHAVIOR = true;

1 Like