How to pack all dependencies and external Resources into a single scene File?

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

Is it possible to ‘pack’ a scene file, so that it includes all its dependencies and external Resources like Scripts, Scenes, ect. ?

I’m using a http request to download a map file at the start of the game, but that only really works when the .tscn file doesn’t have any external resources, which is basically impossible.

:bust_in_silhouette: Reply From: Vikrant

You can Export the scene along with dependencies to zip or pck file.
And then you can easily load this scene from script

Hope this can help you

Ah, didn’t know about the way that .pck files could be imported, thank you!

Coxcopi | 2021-06-08 08:59