Hi!
I have this in a Draw-Event:
var _fontBefore = draw_get_font();
When starting the game, GMLive doesn't complain about it, but as soon as I change something in that Event and save it, GMLive cannot reload that Draw- Event anymore and gives this error:
[live][11:38:03] Error in obj_test_powerups_cont:Draw_0:
[live][11:38:03] obj_test_powerups_cont:Draw_0[L7,c19] `draw_get_font` is not a function or script
This is the code at the top of that Draw-Event:
/// @description Draw test stuff
if (live_enabled) {
if (live_call()) { return live_result; }
}
var _colorBefore = draw_get_colour();
var _fontBefore = draw_get_font();
...
...