Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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

Nice, I'll check it out!

(2 edits)

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);
}