In three.js, when the mouse is zoomed, the text will be magnified and reduced accordingly.
var texture = new THREE.Texture( canvas );
var material = new THREE.SpriteMaterial ( { map: texture, transparent:false } );
var sprite = new THREE.Sprite( material );
How do you keep the text size from changing when the mouse is zoomed?