Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Getting errors after trying to run project for the first time in a while despite not changing anything. Posting error messages here

A topic by Gypsy created 12 days ago Views: 46 Replies: 4
Viewing posts 1 to 2

Hope this helps:

Error : gml_GlobalScript_GMLive(4786) : "delta" is a macro and cannot be used as an instance variable

Error : gml_GlobalScript_GMLive(4801) : "delta" is a macro and cannot be used as an instance variable

Error : gml_GlobalScript_GMLiveAPI_js(369) : Unable to refer to Extension functions indirectly

Error : gml_GlobalScript_GMLiveAPI_js(370) : Unable to refer to Extension functions indirectly

If there's anything I need to do or change, please let me know, thanks!

Developer(+1)

The first two probably mean that you have a resource called “delta”. You can rename the resource or find-replace delta to something else in the GMLive script.

For the other two, you can replace return func; by return undefined; but let me know what functions these are and what extensions are you using

Alright! When I get to using it I'll update this part, hopefully soon, thanks as always, YAL!

Alright, I think I fixed the first issue from before and the second just didn't occur so I'll take that as a win.

When trying to activate the GM Live refresh during editing during runtime I get this error. How should I proceed?

___________________________________________

############################################################################################

FATAL ERROR in Room Creation Code for room rm_blank

ds_map_find_value argument 1 incorrect type (undefined) expecting a ds_map

 at gml_Script_live_room_loader_add_layer (line 13683) -        var l_ql_depth=ds_map_find_value(l_ql, "depth");

############################################################################################

gml_Script_live_room_loader_add_layer (line 13683)

gml_Script_live_room_loader_run_impl2 (line 14014) -               live_room_loader_add_layer(ds_list_find_value(l_lrs,l_lrk));

gml_Script_live_room_start (line 14046) -               live_room_loader_run_impl2(l_rm2);

gml_Room_rm_blank_Create (line 1) - live_room_start();

Developer

That is fixed by doing this change