What is my target?

Hello,
first of all, I’m new to Unreal, sorry for my bad knowledge. Here’s my problem:

I just downloaded the plugin “[File Downloader][1]” from GitHub. Everything works fine, but i don’t know what to connect to the “Target”. I tried everything :confused:

Can you guys help me?

Thanks in advance,

The target needs to be a File Download Manager object reference. If you are implementing the function inside an object of that class you can simply leave the target blank.

In blueprints, the target is the object that will actually execute the function inside of it. For instance, when you get the player controller and then call some function from it, the target for that function would be the player controller.

In this particular case I would imagine that the plugin requieres you to initialize the file download manager somehow (by getting it from a function or by using create object of class). I cannot tell yo uexactly what it would be, but you should try checking out the documentation for the plugin.

Hope it helps. Have a nice day!

Works! I just had to create a variable with an object reference to the DownloadManager class!

Thank you so much for the reply! :slight_smile:
Have a nice day too!