Skip to content

Free plugin for Unreal Engine 5. A flexible and convenient subsystem for asynchronous management of Data Assets.

License

Notifications You must be signed in to change notification settings

Pavreally/AsyncDataAssetManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Async Data Asset Manager

Async Data Asset Manager

ADAM is a plugin for Unreal Engine 5 that adds a subsystem for asynchronous loading and unloading of Data Assets. This subsystem simplifies data management and can be used in both Blueprints and C++.


Note

The plugin has been pre-packaged only for Win64 and Android.

Latest Updates

Version 1.4.0

  • Build version for Unreal Engine 5.6.0
  • To improve usability and streamline the workflow, tag specification has been changed from FName to FGameplayTag. (Note: FName is still used in core algorithms to ensure maximum performance when processing large datasets.) If a specific tag is not defined, it will default to NONE.
  • Blueprint improvement: a concise name for the subsystem has been added for convenience.
  • Minor adjustments to optional debug notifications.

What it's for

  • Load and unload Data Assets asynchronously using simple functions.
  • Easily and quickly configure your logic for data management.

Features

  • Fast and simple management of asynchronous Data Asset loading without the need to use C++ code.
  • The ADAM subsystem supports parallel asynchronous loading of Data Assets from multiple sources, controlling random duplicate load and unload requests in real-time.
  • Additional duplicate checking ensures that there are no additional references to resources in memory and that they are retained by the standard system.
  • Supports bulk asynchronous loading of unique Data Assets.
  • This subsystem enables recursive data loading. If you load a single DataAsset that includes multiple nested Data Assets, all of them will be loaded and filtered to avoid duplicates in memory.
  • Group your uploaded DataAssets using tags so that they can be unloaded at the right moment (for example, this can be useful if you are uploading DataAssets in parts and want to unload them without affecting other necessary data still stored in memory).
  • Supports asynchronous loading without memory retention (e.g., if you need to immediately access data and then free up memory).
  • Single notification for bulk data load. The OnAllLoadedADAM delegate notifies when all Data Assets have been loaded simultaneously. It only functions if the NotifyAfterFullLoaded option is enabled, which is supported exclusively by the LoadArrayADAM method.
  • Disableable debug logs allow you to monitor the entire asynchronous data management process. Plugin settings are located in Project Settings > Plugins > Async Technologies - ADAM.

Install

  1. Make sure the Unreal Engine editor is closed.
  2. Move the "Plugins" folder to the root folder of your created project.
  3. Run your project to which the "Plugins" folder with 'AsyncDataAssetManager' was added. If a message about restoring the module appears, select "Yes".
  4. Done! The 'Async Data Asset Manager' folders should appear in the Unreal Engine browser and the plugin should be automatically activated. If the plugin folder is not visible, activate visibility through the browser settings: Settings > Show Plugin Content.

How to use it?

An interactive step-by-step tutorial on how to use ADAM can be found in the file: BP_GameMode_ADAM_demo, which is located at the path Plugins\Async Data Asset Manager Content\DemoFiles\.

Window Manager Window Manager Window Manager

(C++) Documentaion

All sources contain self-documenting code.

About

Free plugin for Unreal Engine 5. A flexible and convenient subsystem for asynchronous management of Data Assets.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published