Navigation
API > API/Runtime > API/Runtime/Projects > API/Runtime/Projects/IPluginManager
Description
Start loading localization data for an explicitly loaded plugin that has previously been mounted via one of the MountExplicitlyLoadedPlugin functions.
Localization data is ref-counted, so this should be paired with a call to UnmountExplicitlyLoadedPluginLocalizationData.
| Name | MountExplicitlyLoadedPluginLocalizationData |
| Type | function |
| Header File | /Engine/Source/Runtime/Projects/Public/Interfaces/IPluginManager.h |
| Include Path | #include "Interfaces/IPluginManager.h" |
bool MountExplicitlyLoadedPluginLocalizationData
(
const FString & PluginName,
TUniqueFunction < void &PluginName)> && Notification
)
True if localization data started to load, or false if the plugin was missing or had no localization data to load.
Parameters
| Name | Remarks |
|---|---|
| PluginName | The name of the plugin to load the localization data for. |
| Notification | An optional notification function to call when the localization data load has finished (from any thread), or immediately if there was no localization data to load. bLoadedLocalization corresponds to the return value of this function. |