Simple question I think...
How do I hide the status bar? Like in a cutscene, I dont want the status bar to be there then...
Try:
//fill the entire screen with black
fill_screen(0);
//redraw the background
draw_background();
You may want to enclose those functions with fade_down() and fade_up() so that it doesn't look ugly.
//fill the entire screen with black
fill_screen(0);
//redraw the background
draw_background();
You may want to enclose those functions with fade_down() and fade_up() so that it doesn't look ugly.








