hanerx / SimpleRequest4UE

A simple multi threat http request downloder for ue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

  • download file
  • multi threat
  • frame download
  • 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

With C++ Code

Use Single Request

USimpleRequest* SimpleRequest=NewObject<USimpleRequest>();
SimpleRequest->SetURL(InURL);
SimpleRequest->AddToRoot();
SimpleRequest->StartDownload();

About

A simple multi threat http request downloder for ue


Languages

Language:C++ 95.1%Language:C# 4.9%