font_get_texture(font);
Argument | Description |
---|---|
font | The index of the font to use. |
Returns: Pointer
This function returns a special pointer for the font
texture page. This value can then be used in other draw functions,
particularly in general 3D and some of the
2D
primitive functions, as well as the Shader functions. You can get more
information about the returned texture page using the different
texture_ functions found here.
tex = font_get_texture(fnt_Main);
The above code will get the texture pointer for the font indexed as "fnt_Main".