I tried adding one myself, but it seems like it only works for object events and not functions (I get this error when it tries to reload a function using the macro: Couldn't find functionName in 'C:\...\scrName.gml'
).
Anything akin to #macro LIVE if(live_call()) return live_result;
, for quick and explicit convenience like this:
function cool_script(){
LIVE
draw_set_color(c_yellow);
draw_sprite(sprite, 0, 50, 50);
}
(Making this a request cause I assume it manually parses the script file for the live_call()
or something like that, and supporting custom macros for that might be difficult).