-1

I am working on one web application development where i need to render glsl which can support editable animated text. Whereas User can edit the animated text which can be rendered through webgl.

Can you please provide me and reference link or if there any working GLSL code where i can pass editable text as input?

eg. I want to have same animation as provided in the below link using glsl https://tobiasahlin.com/moving-letters/#1

Rabbid76
  • 202,892
  • 27
  • 131
  • 174

1 Answers1

0

There is nothing in WebGL to directly display text.

The easiest way to do this would be to write text in a 2D canvas and use it as a texture in your WebGL scene.

Tolokoban
  • 2,297
  • 14
  • 17