godot runtime to load data.pck

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By socheat.khauv
:warning: Old Version Published before Godot 3 was released.

regarding to godot runtime, is there a way to load data.pck from http address, instead load from its bundle file,

I was thinking about specific platform, iOS and Android, is would be nice to have this feature, then we could fix some runtime script, or resource on the fly, (no need to redistribute into google play or app store)

:bust_in_silhouette: Reply From: Apoena Machado Cunha

Directly by http, no. But you can publish your pck on the web, and then download easily with HTTPRequest or HTTPClient. Then load normally with load_resource_pack.

For anyone struggling to find loadresourcepack like I did, this user meant ProjectSettings.load_resource_pack(), the underscores forced the italic style on the word.

MysterE | 2023-06-16 14:56