draw_set_font


描述

This function will set the font to be used for all further text drawing. This font must have been added into the font assets of the game or have been created using either the font_add or font_add_sprite.


语法:

draw_set_font(font);

参数 描述
font The name of the font to use.


返回:

N/A(无返回值)


例如:

draw_set_colour(c_blue);
draw_set_font(fnt_Game);
draw_text(200, 200, "Hello World" );

The above code will draw the given text using the font indexed in the variable "fnt_Game" and coloured blue.