My engine gives back no build errors and yet the game won’t load, says that it isn’t responding, and gives back this error. Can I get some help, or at least an explanation.
The engine is crashing. If you can post your project publicly someone can offer insight, otherwise invite one of the Defold team members to take a look.
I’ve never had to publicly post a project before, how do you do that?
Zip everything in it except for the build and .git folders and upload here if it’s not very large.
Had this happen a bunch recently. It’s usually caused by a loop that isn’t being closed, which hitches up the game and the engine. At least, whenever the engine got hung up, that was the case for me.
This is what we usually call a “hang”. (As opposed to a “crash”)
For some reason, the engine is looping endlessly or waiting for something to happen.
Most often, it is caused by a for loop that doesn’t terminate (as @Gmanicus says).
Check your recent script changes to see if you happened to change a for-loop or a condition variable/message etc
Thanks after fixing a repeat loop, everything seems to be working fine now.