GaussianSplats3D
                                
                                 GaussianSplats3D copied to clipboard
                                
                                    GaussianSplats3D copied to clipboard
                            
                            
                            
                        SplatPartitioner.js:55 Cannot read properties of undefined (reading 'splatCount')
Trying to download ksplats - this worked in the previous 0.4.5 version but throws in 0.4.7 for e.g. this splat: https://huggingface.co/cakewalk/splat-data/resolve/main/garden.splat
const compressionLevel = 1;
        const sphericalHarmonicsDegree = 1;
        // const splatAlphaRemovalThreshold = 5; // out of 255
        return PlyLoader.loadFromURL(url,
            opts?.onProgress,
            false,
            false,
            1,
            compressionLevel,
            true,
            sphericalHarmonicsDegree)
            .then((splatBuffer) => {
                console.debug("Downloaded optimized splat");
                KSplatLoader.downloadFile(splatBuffer, `${filename || "converted_file"}.ksplat`);
                return splatBuffer;
            });
SplatPartitioner.js:55 Uncaught TypeError: Cannot read properties of undefined (reading 'splatCount')
    at SplatPartitioner.partitionGenerator (SplatPartitioner.js:55:64)
    at SplatPartitioner.partitionUncompressedSplatArray (SplatPartitioner.js:19:34)
    at SplatBufferGenerator.generateFromUncompressedSplatArray (SplatBufferGenerator.js:18:56)