Three.js hotspots

Hello wonderful people,
So I am new to three js and I am currently looking into attaching hotspots to my scene
and I am wondering if anyone has ever used this lib:

and if there are any demos out there ? as I can’t seem to find any.
or if you have any suggestion about adding hotspots to a scene (the scene is a .gltf)
Thanks alot!

Maybe related:

1 Like

I wouldn’t use that library. Three.js already ships with a CSS2DRenderer that’s more streamlined with the rest of the library.

You can see an example of it here, the Earth & Moon labels are just <div>s with CSS transforms. You can easily bind these to .addEventListener() like any other HTMLDom element.

1 Like