GaussianSplats3D icon indicating copy to clipboard operation
GaussianSplats3D copied to clipboard

Dynamic Scenes

Open Vertifate opened this issue 8 months ago • 1 comments
trafficstars

Hello, this is indeed a great work. In the previous version, I saw the addition of the dynamic scene function. If I want to achieve the same effect as the dynamic scene in the DEMO, do I need to add something to the input data or make changes elsewhere? Thank you for your answer.

Vertifate avatar Mar 13 '25 14:03 Vertifate

I'm not quite sure what you mean, if you replicate the code in demo/dynamic_scenes.html, that should be all you need to get a dynamic scene working. It's important to set the dynamicScene viewer parameter to true:

const viewer = new GaussianSplats3D.Viewer({
  'cameraUp': [0, -1, -0.54],
  'initialCameraPosition': [-7.14242, -2.25111, -2.36519],
  'initialCameraLookAt': [1.52976, 2.27776, 1.65898],
  'dynamicScene': true,
  'sphericalHarmonicsDegree': 2,
});

mkkellogg avatar Mar 15 '25 16:03 mkkellogg