What exactly does "re-binding" mean and how can I avoid it is probably the better question I should be asking. Not seeing anything in the manual/cheat sheet about re-binding.
I'm using the live_auto_call macro in both my control object begin step and in scripts that can be run in the begin step as well as other times from the control object. Idk if any of that helps. I'm not too sure what you mean by the "assignments of the variable"
KingDevyn
Recent community posts
Full error message:
___________________________________________
############################################################################################
ERROR in
action number 1
of Step Event0
for object o_control:
It would appear that you've re-bound a GMLive function to a different scope. Please use live_method() rather than method() to do so.
at gml_Script_gml_thread_method_script (line 13413) - if (l_pg == undefined) show_error("It would appear that you've re-bound a GMLive function to a different scope. Please use live_method() rather than method() to do so.", true);
############################################################################################
gml_Script_gml_thread_method_script (line 13413)
gml_Object_o_control_Step_0 (line 758)
I replaced all lines of code that used method() with live_method(), except for the lines in GMLive's code. Is there anything else I need to find and replace to stop getting this error? I'm using other libraries such as Input, Scribble, and ScribbleJr, of which I replaced all lines using method(). Using the 2022+ version of GMLive and GM Runtime 2024.4.0.168 on Windows. Let me know if any other information would help. Thanks!