Code and asset live-reloading for GameMaker! · By YellowAfterlife
When I run the game normally, there is no problem, but when gmlive is active, I get this error:
how can i solve this problem?
This is because instance functions now return a new ref type instead of instance IDs.
ref
A workaround would be to find
return "Expected an index";
in GMLive script and replace it with return "".
GMLive
return ""
Thank you so much!