hi,
i wanted to make a progressbar for my game.
Because i use LBGUI i used the LBG_progressbar but it just updates the progress when the leven is loaded 100%;
void on_level_event(percent)
{
lbg_splash_progressbar.progress = percent;
LBG_update_progressbar(lbg_splash_progressbar);
if (percent >= 100)
{
loaded_level.ready = 1;
}
}
any idea how to fix that?