I have a game where I load my levels from "./levels" folder. They are all ".tscn" files.
This is done by using "DirAccess.open("res://levels")"
I split the file name and remove".tscn", so loading "./levels/my-first-leve.tscn" will display My First Level as a button. I then bind() the fileName so i can call my "load_level()" func.
The func load_level, essentially does this: load("res://levels/{fileName}").
This works in Editor, and in packaged .exe on my machine and others.
Though for the .exe, I have to copy the "levels" folder with it.
When I export for Web, it displays the buttons like this: "My First Level.remap", and clicking the button does nothing.
I have no idea what Ive done wrong. Any suggestions or ideas would be greatly appreciated !
I assume Ive misunderstood how I should be reading my files or something?
Trying to upload to Itch.io eventually.