I’m trying to embed an HTML containing some text and image into an HTML Mesh and adding it to a scene. So far, adding text is possible but for some reason, the image doesn’t show up. Does HTML Mesh support image + text embeds?
Doesn’t seem like, the implementation seems to be a light version of html2canvas, basically replicating what is rendered in a dom on a canvas. You could add handling images to the code, but you would have to implement it’s different rendering modes too such as fit, cover, repeat depending on what you need.
Other than that you may look for mixing CSS3D renderer with WebGLRenderer, since you can use invisible planes to punch pixel-correct holes in the WebGL canvas so the CSS3D parts are shown like being in the scene.