font_get_texture

Returns the texture id for the given font.

Syntax:

font_get_texture(font);


Argument Description
font The index of the font to use.


Returns: Pointer


Description

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.


Example:

tex = font_get_texture(fnt_Main);

The above code will get the texture pointer for the font indexed as "fnt_Main".


Back: Fonts
Next: font_get_uvs
© Copyright YoYo Games Ltd. 2018 All Rights Reserved