I\'m new to three.js and have some issues belonging 2D Text:
What I want: I want some Labels for eg. the x,y and z-axis. The labels should always lo
You can use my SpriteText object. See example of using sprites_text.
Example of code:
var spriteText = new THREE.SpriteText({ text: 'Hello world!' }); scene.add( spriteText );
Source.