2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-05-29 18:32:14 -04:00
|
|
|
|
|
|
|
|
#include "GeometryCacheTracksModule.h"
|
|
|
|
|
#if WITH_EDITOR
|
|
|
|
|
#include "GeometryCacheSequencerModule.h"
|
2023-01-19 00:48:07 -05:00
|
|
|
#else
|
|
|
|
|
#include "GeometryCacheModule.h"
|
2018-05-29 18:32:14 -04:00
|
|
|
#endif // WITH_EDITOR
|
|
|
|
|
|
2018-05-30 09:45:25 -04:00
|
|
|
IMPLEMENT_MODULE(FGeometryCacheTracksModule, GeometryCacheTracks)
|
2018-05-29 18:32:14 -04:00
|
|
|
|
|
|
|
|
void FGeometryCacheTracksModule::StartupModule()
|
|
|
|
|
{
|
2022-09-09 11:36:22 -04:00
|
|
|
LLM_SCOPE_BYTAG(GeometryCache);
|
2018-05-29 18:32:14 -04:00
|
|
|
#if WITH_EDITOR
|
|
|
|
|
FGeometryCacheSequencerModule& Module = FModuleManager::LoadModuleChecked<FGeometryCacheSequencerModule>(TEXT("GeometryCacheSequencer"));
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FGeometryCacheTracksModule::ShutdownModule()
|
|
|
|
|
{
|
|
|
|
|
}
|