3D Fonts for Three.js

Hello everyone. First time here.

For (another environment) I built a 3D font package. It makes normal meshes out of short text strings. Is there something like that in Three? If not, is there a need for it?

It has a companion utility, called MeshWriter-Font, which generates the MeshWriter font files from truetype or opentype files. This is for the intrepid person who wants to use MeshWriter but has a specific font they want to use.

If there is interest, I would need to port it to Three.js. I am up for doing this it there is some pull.

All comments solicited. I am utterly new to this forum.

That’s great! However, Three.js already has the TextGeometry class that does what you’re describing.

You can see it in action here: https://threejs.org/examples/webgl_geometry_text.html

1 Like

Thank you. That’s what I wanted to know.