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
- Host: GitHub
- URL: https://github.com/hanerx/SimpleRequest4UE
- Owner: hanerx
- Created: 2022-01-09T13:26:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T13:18:57.000Z (over 4 years ago)
- Last Synced: 2024-10-24T02:32:43.469Z (over 1 year ago)
- Topics: unreal, unreal-engine, unreal-engine-plugin
- Language: C++
- Homepage:
- Size: 124 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

### With C++ Code
#### Use Single Request
```c++
USimpleRequest* SimpleRequest=NewObject();
SimpleRequest->SetURL(InURL);
SimpleRequest->AddToRoot();
SimpleRequest->StartDownload();
```