This is a simple plugin for download file using HTTP, This plugin is build under UE5-early-access version(but it also work in UE4 I think?)
- download source code in github
- place them in your project plugin folder
- use as normal ue plugin
- download file
- multi threat
- frame download
- auto retry
- static download manager
- global config
Use Blueprint to download single file is very simple just do it as follow
USimpleRequest* SimpleRequest=NewObject<USimpleRequest>();
SimpleRequest->SetURL(InURL);
SimpleRequest->AddToRoot();
SimpleRequest->StartDownload();