texturegroup_get_fonts


描述

With this function you can retrieve the font index of each of the fonts assigned to texture pages within the given texture group. You supply the texture group ID string (as defined in the texture Group Editor) and the function will return a 1D array where each entry contains the font index for a font resource. If the function fails - ie: an invalid group is given, or the group has no texture assigned to it - then the array will be empty (0 length).


语法:

texturegroup_get_fonts(tex_id);

参数 描述
tex The name of the texture group to check (a string)


返回:

一维数组(1D)


例如:

var _tex_array = texturegroup_get_fonts( "MainMenu");
for (var i = 0; i < array_length_1d(_tex_array); ++i;)
    {
    show_debug_message("Font " + string(i) + " Index:" + string(tex_array[i]));
    }

The above code will retrieve the font indexes for the texture group "MainMenu", then display those IDs in the console output window.