Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Modules > API/Runtime/Core/Modules/FModuleManager
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Modules/ModuleManager.h |
Include | #include "Modules/ModuleManager.h" |
Source | /Engine/Source/Runtime/Core/Private/Modules/ModuleManager.cpp |
bool UnloadModule
&40;
const FName InModuleName,
bool bIsShutdown
&41;
Remarks
Unloads a specific module NOTE: You can manually unload a module before the normal shutdown occurs with this, but be careful as you may be unloading another module's dependency too early! true if module was unloaded successfully, false otherwise.
Parameters
Name | Description |
---|---|
InModuleName | The name of the module to unload. Should not include path, extension or platform/configuration info. This is just the "module name" part of the module file name. |
bIsShutdown | Is this unload module call occurring at shutdown (default = false). |