views:

163

answers:

1

I'm writting an small game in iPhone, and I'm being asked to add in-game text will be localized in EFIGS+J+Chinese Simplified and provided to me later.

Which tools and methods are avaiable in OpenGL ES for the iphone in order to render text ?

+1  A: 

You do realize that you can combine openGl with other drawing mechanisms, which could handle text and especially localized text easier? An openGL app doesn't mean you can only use openGL to draw to the screen. For example, you could have an overlay view that is not openGL, right on top of an openGL view, providing you with the localized text support that you need.

mahboudz
I didn't know that. Thanks for the help.
José Joel.
For a good tutorial, see: http://iphonedevelopment.blogspot.com/2009/04/opengl-es-from-ground-up-part-1-basic.html
mahboudz