noob questions

Started by
2 comments, last by ComradeBG 17 years, 5 months ago
Hey, I was wondering if someone can direct me to some opengl tutorials on how to draw 2D text on top of a 3D fps background and how to load 3D objects into a 3D fps background. Kind Regards, Victor
Advertisement
Take a look at http://nehe.gamedev.net/, there is nice tutorials about loading and render fonts, and simple models loading.
Thanks for the reply. I was wondering in particular how do i blend 2D text into a fps background? the font tutorials just display it behind a blank background.

thanks
victor
this thread should help
http://www.gamedev.net/community/forums/topic.asp?topic_id=104791
after you draw all the stuff in your application, do like this
glEnable2D();SomeFunctionToDrawTheText();glDisable2D();
My projects: https://sourceforge.net/projects/monstersmash/

This topic is closed to new replies.

Advertisement