Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

static void UploadContentWithTags(FString FilePath, TMap<FString, FString> Tags, FCavrnusUploadCompleteFunction const CavrnusUploadCompleteFunction& OnUploadComplete);

Delegates TypesOptions:

DECLARE_DYNAMIC_DELEGATE_OneParam(FCavrnusUploadCompleteFunction, const FCavrnusRemoteContent&, uploadedContent);

typedef TFunction<void(const FCavrnusRemoteContent&)> CavrnusUploadCompleteFunction;

- Description

This is basically identical to UploadContent except that it allows you to specify additional tags to help filter/organize your objects in UI or otherwise.

...