Texture Group settings were reset. Had to uncheck "Automatically Crop" on the texture group I dedicated to sprites that shouldn't be auto cropped.
KingDevyn
Recent community posts
I had to move my initializing room back to the top of Room Order, and I worry some things might potentially have been lost when the GMS project tool converted the resource files back to their current version format (using IDE v2024.11.0.179 Runtime v2024.11.0.227) , but at surface level it looks to be working well so far outside changing the room order. I'll reply in this thread if any other bugs surface that seem to have resulted from using this tool on a more recent GMS project file.
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"
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!