This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
+1 vote

Hi, I need to export my project to HTML5, but when I export, the .pck file becomes very large, which means that it takes a long time to load when integrated into a website.

Is there any way to split the .pck file and load the parts in the background of the game at runtime?

or

I also tried to export the scenes separately, getting several HTML pages and several small .pck files, but then I don't know how to connect them again at runtime. In this case it would also be necessary to load the several .pck on the background during the execution of the game. Is there any way to reconnect the scenes when they are in different exports and load the various .pck runtimes?

Thank you

in Engine by (35 points)
edited by

1 Answer

+1 vote

You can load PCK files at run-time using ProjectSettings.load_resource_pack(), but I don't think this can be integrated into an HTML5 build that would download a PCK file at runtime. See Exporting packs, patches, and mods for more information.

To make PCK loading faster, you can configure the web server to compress PCK files using gzip or Brotli on-the-fly (just like the .wasm file).

by (12,908 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.