Files
UnrealEngine/Engine/Source/Runtime/Overlay/Private/OverlayModule.cpp
2025-05-18 13:04:45 +08:00

38 lines
775 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
#include "OverlayPrivate.h"
#include "IOverlayModule.h"
DEFINE_LOG_CATEGORY(LogOverlay);
/**
* Implements the Overlay module
*/
class FOverlayModule
: public IOverlayModule
{
public:
// IModuleInterface interface
virtual void StartupModule() override
{
#if WITH_EDITOR
// Ensure that we always have the overlays factories when loading this module in an editor build
FModuleManager::Get().LoadModule(TEXT("OverlayEditor"));
#endif // WITH_EDITOR
}
virtual void ShutdownModule() override { }
virtual bool SupportsDynamicReloading() override
{
return false;
}
// End IModuleInterface interface
};
IMPLEMENT_MODULE(FOverlayModule, Overlay);