Pixel-Composer/scripts/draw_UI_scale/draw_UI_scale.gml
2023-04-08 20:06:27 +02:00

28 lines
561 B
Plaintext

function line_height(font = noone, offset = 0) {
var ff = draw_get_font();
if(font != noone)
draw_set_font(font);
var hh = string_height("l") + offset * UI_SCALE;
draw_set_font(ff);
return hh;
}
function line_width(txt, font = noone, offset = 0) {
var ff = draw_get_font();
if(font != noone)
draw_set_font(font);
var ww = string_width(txt) + offset * UI_SCALE;
draw_set_font(ff);
return ww;
}
#region global
#macro TEXTBOX_HEIGHT line_height(f_p0, 12)
gml_pragma("forceinline");
function ui(val) { return val * UI_SCALE; }
#endregion