mkkellogg / GaussianSplats3D

Three.js-based implementation of 3D Gaussian splatting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dynamic scene transform.

wakufactory opened this issue · comments

This wonderful library is giving me a lot of ideas.

I can add multiple splats with addSplatScenes, but is it possible to dynamically set the transform of each scene afterwards?
I tried getting the scene with getSplatScene and changing the transform, but the scene did not change.
Do I need to update anything?

You will need to set the dynamicScene parameter for the Viewer constructor to true for starters. You can check out the dynamic scenes example for guidance: https://github.com/mkkellogg/GaussianSplats3D/blob/main/demo/dynamic_scenes.html

Thank you for your reply. I overlooked the demo.