Brent Yi
Brent Yi
> Is there any function that can obtain the resolution of the current browser? Unfortunately this isn't exposed right now, you would have to modify the source code. If you...
Does this help? https://viser.studio/latest/development/#client-development
Hi! One thing you could do is trace how messages in viser are defined, wrapped, and ultimately handled. One relatively simple example I can recommend is the `ResetSceneMessage`: https://github.com/search?q=repo%3Anerfstudio-project%2Fviser+ResetSceneMessage&type=code You...
Hi! Unfortunately we don't have audio support ☹️ It'd be nice to have, but I don't have a timeline for this feature. Would be interested in a PR if you...
Hi! We're planning on it, but unfortunately this functionality hasn't been cleaned up / documented / supported. If it's important to you and you want to figure it out, you...
You can do it via `add_glb` (https://viser.studio/latest/scene_api/#viser.SceneApi.add_glb) or `add_mesh_trimesh` (https://viser.studio/latest/scene_api/#viser.SceneApi.add_mesh_trimesh).
Hi there! Unfortunately this looks like a mistake in the docs, we currently only support position and orientation. If you want to take scale input the current ways are: you...
Unfortunately no plans here, it's doable but not on the priority list. Are you able to describe your use case? That could be useful for evaluating.
Update: I plan to add this as part of general scaling support, we can track in #531.
Hi! For updating Gaussians, the best we can do is replace the whole buffer. Assigning to the `.buffer` attribute should work, eg `splat_handle.buffer = new_buffer`, but constructing the buffer is...