I copied the following playground into my scene and got the text working.
I want to be able to change/update the text on the Dynamic Texture afterwards, and also need a way to read what text is on the DynamicTexture. Couldn’t find what I’m looking in my research:
Hope this helps.
Thank you! This worked.
However I still have a small problem.
Updating the texture with a transparent background doesnt seem to delete the previous text:

PG: https://playground.babylonjs.com/#TMHF80#2043
Any way of fixing this?
And how would I be able to recalculate the width of the plane to fit the text?
Thanks for the PR.
For anyone interested, a workaround to this issue would be to do the following, before updating the text:
const ctx = dynamicTexture.getContext();
ctx.clearRect(0, 0, 1000, 1000); //