0 votes

I noticed that different Godot projects have different sizes when exporting.

The .pck file changes massively. If I understand it correctly, it contains the scene and script files. (Also the materials?) Does it contain any other files/information?

The .exe file is 35 MB for one project and 37 MB for another. What does this file contain that it only sometimes changes size? I thought I could update a game/program by changing only the .pck file. Do I also need to replace the .exe file each time?

Can someone give me a list (if possible a complete list) of all the different data stored in the .exe and .pck files?

in Engine by (226 points)

1 Answer

+2 votes
Best answer

The PCK file contains all the project data: scenes, scripts, textures, sounds, …

The executable only contains the engine's executable code (without editor functionality). It does not change between projects unless you modify it with rcedit when exporting. The size of the executable will slightly vary depending on the engine version you used to export the project.

I thought I could update a game/program by changing only the .pck file. Do I also need to replace the .exe file each time?

You need to replace both the EXE and PCK when updating a project. An export template is only guaranteed to be compatible with the same major.minor.patch version the PCK was exported with.

by (12,893 points)
selected by
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.