In order for a Text entity to always face the camera, simply set the Text.Billboard property to true. Here is a sample code:
Text text = new Text(0, 0, "Hello World", 4);
text.Billboard = true;
In order for a Text entity to always face the camera, simply set the Text.Billboard property to true. Here is a sample code:
Text text = new Text(0, 0, "Hello World", 4);
text.Billboard = true;
Comments
Please sign in to leave a comment.