Hmm, the camera is still a work in progress. I actually want to rewrite everything while keeping it simple. I haven’t tried it on HTML5 before, but I’ll try to implement that platform too if this version isn’t good enough
There is a new version 1.6.0 now, though it still lacks the HTML5 feature it has A LOT of fixes and quality of life upgrades, though it might break projects because some values and namings have been changed so you gotta be careful, it just last update was 2 years ago a lot have changed, even GM is not recognizable anymore
Hi there, what is causing the font to look like this? I'm using Pixica with recommended font size 16


here's my settings below using 1.6.0

for reference here my code
function scr_draw_text(xx ,yy, str, font = fnt_ui_caption, col = c_black, halign = fa_left, valign = fa_top, wid = 1300, scale = 1, angle = 0, alpha = 1){
draw_set_font(font);
draw_set_color(col);
draw_set_halign(halign);
draw_set_valign(valign);
draw_text_ext_transformed_colour(round(xx), round(yy), str, -1, wid, scale, scale, angle, col, col, col, col, 1);
// reset
draw_set_color(c_white);
draw_set_halign(fa_left);
draw_set_valign(fa_top);
}