Results 220 comments of Mark Kellogg

Would you also be able to share your original `.ply` as well? And do you know how many SH degrees should be present in the file? Also, I get an...

There is bug that currently manifests when you limit the spherical harmonics to degree 1, and it affects all file types. I have a fix in this branch: https://github.com/mkkellogg/GaussianSplats3D/tree/playcanvas_and_spz_compression Hopefully...

Sorry for the late response, it turns out I forgot to push some local changes to https://github.com/mkkellogg/GaussianSplats3D/tree/playcanvas_and_spz_compression. Want to give it another try?

I totally forgot to update the online viewer, thanks for catching that! It should be fixed now.

Can you send my the file you're having issues with?

Are you doing any rotations or other transformations to the scene? I'm able to view it correctly with SH=1 using the latest in `main` (which should correspond to v0.4.7) ![Image](https://github.com/user-attachments/assets/022dcc49-bae7-45ce-8928-20d76ba53923)

Interesting, the online viewer is up-to-date. In fact, I can follow the link you posted above, load `splat.ksplat`, and it all seems to work correctly. What OS and browser are...

You should be able to to use the splat index to determine the scene index with something like: ``` viewer.raycaster.intersectSplatMesh(viewer.splatMesh, hits); if (hits.length > 0) { const closestHit = hit[0];...

Sorry for the late response, there isn't really a way to attach Transform controls to an individual splat scene, it has to be attached to `DropInViewer` or `Viewer.splatMesh`.

I know this is a bit late, but the most recent release contains an updated way to modify a scene's position, orientation, and scale much in the same way you...