Hello, I don't quite understand how I can reload local functions or I guess 'methods' using GMLive. I keep getting an error telling me to use 'live_method' instead of 'method'.
For scripts created in the IDE, I understand that you do:
if (live_call()) return live_result;
And then if the script has any arguments you'd put them in between the parenthesis.
But if I have a local function like this:
var my_function = function()
{
* blah blah*
}
What is the syntax for setting up live reloading for that? Thank you