Here’s a repro:
And the fix:
Here’s a repro:
And the fix:
Babylon.js Playground I haven’t set up a PBR skybox, nor do I have a server, but the issue can be seen from the browser console.
I can’t reproduce.
Can you retry, maybe my PR was not yet merged when you tested?
Hi everyone! We’re seeing the same issue on our app in production for users who upgraded to chrome 146. We are running BabylonJS version 6.38.0. I know backporting is a big ask, but a fix for that specific version would be a huge lifesaver for our users.
Try this, it was enough for me
Texture.CreateFromBase64String = (data, name, scene, noMipmapOrOptions, invertY, samplingMode = Texture.TRILINEAR_SAMPLINGMODE, onLoad = null, onError = null, format = 5, creationFlags, forcedExtension) => {
return new Texture(name.startsWith("data:") ? name : “data:” + name, scene, noMipmapOrOptions, invertY, samplingMode, onLoad, onError, data, false, format, undefined, undefined, creationFlags, forcedExtension);
}
I applied two fixes to my PG above, and it looks to work in 6.38.0:
@Evgeni_Popov @SerialF That worked, thank you very much!