With the new version, loading gaussian splats with a script like below has become much slower and sometimes even crashes the browser (easier to crash with higher resolution, and maybe also when more of the splat is visible on the first frame).
this.app.assets.loadFromUrl(ply_url, "gsplat", (err, asset) => {
if (err) {
throw new Error(err);
}
container.asset = asset;
})
Currently we’ve found two workarounds:
Use older engine like 1.70.3.
If we make the splat barely visible on the first frame (cull most of it), than move the splat in front of the camera, the first frame is not a problem anymore. (this can be tested with the offsetFirst attribute on the linked project)
What platform do you get the crashes on?
Are you using compressed splat format (which loads a lot faster and uses less memory) or uncompressed format? If uncompressed, compress it here: SuperSplat