Navigation
API > API/Plugins > API/Plugins/PluginUtils > API/Plugins/PluginUtils/FPluginUtils
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool UnloadPlugin
(
const TSharedRef< IPlugin >& Plugin, |
Unload assets from the specified plugin and unmount it | PluginUtils.h | |
static bool UnloadPlugin
(
const FString& PluginName, |
Unload assets from the specified plugin and unmount it | PluginUtils.h |
UnloadPlugin(const TSharedRef< IPlugin > &, FText *)
Warnings * Dirty assets that need to be saved will be unloaded anyway
Description
Unload assets from the specified plugin and unmount it
Only works on content-only plugins; plugins with code modules cannot be safely unloaded
Dirty assets that need to be saved will be unloaded anyway
| Name | UnloadPlugin |
| Type | function |
| Header File | /Engine/Plugins/Developer/PluginUtils/Source/PluginUtils/Public/PluginUtils.h |
| Include Path | #include "PluginUtils.h" |
| Source | /Engine/Plugins/Developer/PluginUtils/Source/PluginUtils/Private/PluginUtils.cpp |
static bool UnloadPlugin
(
const TSharedRef < IPlugin > & Plugin,
FText * OutFailReason
)
Whether the plugin was successfully unloaded
Parameters
| Name | Remarks |
|---|---|
| Plugin | Plugin to unload |
| OutFailReason | Outputs the reason of the failure if any |
UnloadPlugin(const FString &, FText *)
Warnings * Dirty assets that need to be saved will be unloaded anyway
Description
Unload assets from the specified plugin and unmount it
Only works on content-only plugins; plugins with code modules cannot be safely unloaded
Dirty assets that need to be saved will be unloaded anyway
| Name | UnloadPlugin |
| Type | function |
| Header File | /Engine/Plugins/Developer/PluginUtils/Source/PluginUtils/Public/PluginUtils.h |
| Include Path | #include "PluginUtils.h" |
| Source | /Engine/Plugins/Developer/PluginUtils/Source/PluginUtils/Private/PluginUtils.cpp |
static bool UnloadPlugin
(
const FString & PluginName,
FText * OutFailReason
)
Whether the plugin was successfully unloaded
Parameters
| Name | Remarks |
|---|---|
| PluginName | Name of the plugin to unload |
| OutFailReason | Outputs the reason of the failure if any |