Can I export to HTML with this plugin in Godot 4.3? #89
-
This is a literal mirror of the question #87 I tried replicating all steps from that thread on Godot 4.3 using inkgd 0.6.0, but then it just won't load =( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
YES THERE IS! It seems I was using an older script for serving html locally, so a simple update solved it If you need it, grab it at https://github.com/godotengine/godot/blob/master/platform/web/serve.py But there is more to it When exporting, you need to add Extensions AND Thread support on the Options tab. If you're gonna upload it to itch, you need to check an option 'SharedArrayBuffer support', or else you'll get an error message I managed to run all stories from the examples |
Beta Was this translation helpful? Give feedback.
YES THERE IS!
It seems I was using an older script for serving html locally, so a simple update solved it
If you need it, grab it at https://github.com/godotengine/godot/blob/master/platform/web/serve.py
But there is more to it
When exporting, you need to add Extensions AND Thread support on the Options tab.
On the 'Progressive Web App', be sure to check Ensure Cross Origin Isolation Headers. On the Resources, don't forget to add *.json, since it might be ignored
If you're gonna upload it to itch, you need to check an option 'SharedArrayBuffer support', or else you'll get an error message
I managed to run all stories from the examples