highscore_set_font - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Sets the font used for the text in the highscore dialog.
Parameter | Data Type | Description |
---|---|---|
name | string | name of the font |
size | integer | size of the font characters |
style | integer | style of the font (0=normal, 1= bold, 2=italic, 3=bold-italic) |
void: This function does not return anything.
// demonstrates setting the font of the highscore dialog
highscore_set_font("Arial", 12, 0);
NOTOC