Hi All!
I placed texts all over 3d space, and wanna move camera. However, the thing is that whenever camera comes close to the specific text, that text looks awful. In Processing, I used to make font in big size, and draw text in small size, not perfect way but I was quite satisfied with the result. Is there any similar way to this in OF?
Hi, when you load a font you also specify the size to generate it in:
fontLarge.loadFont("Fonts/DIN.otf", 18 );
Change the font size to something larger, then to draw it smaller you can do:
ofPushMatrix();
ofScale(0.1,0.1,0.1);
fontLarge.drawString( word, pos.x, pos.y );
ofPopMatrix();
/A