Tile maps and parallax background doesn't work in HTML5 version of the game

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Tricky Fat Cat

In my small educational project, I’m using a tilemap and parallax background nodes. In Windows build, it works excellent. However, in HTML5 version they don’t appear and don’t work at all and I don’t know why. Google didn’t help me.

Here is my project on GitHub

:bust_in_silhouette: Reply From: Calinou

Switch the project to use the GLES2 renderer by using the dropdown at the top-right of the editor window then export to HTML5 again. This will make it use WebGL 1.0 instead of WebGL 2.0. Since WebGL 1.0 is much better supported by browsers overall, it has higher chances of working correctly.

Edit: This issue is actually related to case sensitivity, which doesn’t apply when running the project on Windows but does after exporting to HTML5. See https://github.com/godotengine/godot/issues/37679.

Hey there, I tried this and nothing changed.

Tricky Fat Cat | 2020-04-07 14:01