<Settings />
<Settings /> adds the cog button to the workspace controls and the popover behind it. The popover is tabbed: Connection, Scene, Pointclouds, Vision, Debug, and Weblabs, followed by any tabs plugins contribute through SettingsPortal.
The values it edits live in the useSettings store, which is persisted to IndexedDB — grid size and fade, point size and colour, line widths, refresh rates, disabled cameras, render toggles, and the measurement axis constraints.
Editing settings without the popover
Section titled “Editing settings without the popover”Every setting remains readable and writable through useSettings, whether or not this plugin is mounted. A host that wants one control rather than the whole popover can write the field directly:
SettingsPortal without Settings
Section titled “SettingsPortal without Settings”SettingsPortal registers its tab into a context the visualizer always provides, so a plugin that uses it is safe to mount on its own — the tab is recorded and simply never rendered. Nothing throws, and the tab appears as soon as <Settings /> is mounted alongside it.