An open API service indexing awesome lists of open source software.

https://github.com/hanerx/SimpleRequest4UE

A simple multi threat http request downloder for ue
https://github.com/hanerx/SimpleRequest4UE

unreal unreal-engine unreal-engine-plugin

Last synced: over 1 year ago
JSON representation

A simple multi threat http request downloder for ue

Awesome Lists containing this project

README

          

# SimpleRequest4UE

## introduction
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?)

## install
1. download source code in github
2. place them in your project plugin folder
3. use as normal ue plugin

## Feature
- [x] download file
- [x] multi threat
- [x] frame download
- [x] auto retry
- [ ] static download manager
- [ ] global config

## How To Use

### With Blueprint

#### Use Single Request

Use Blueprint to download single file is very simple just do it as follow

![image-20220116145205274](Resources/image-20220116145205274.png)

### With C++ Code

#### Use Single Request

```c++
USimpleRequest* SimpleRequest=NewObject();
SimpleRequest->SetURL(InURL);
SimpleRequest->AddToRoot();
SimpleRequest->StartDownload();
```