27 lines
587 B
C++
27 lines
587 B
C++
// ©2022 Batty Bovine Productions, LLC. All Rights Reserved.
|
|
|
|
#include "UnrealzillaGlobalSettings.h"
|
|
|
|
|
|
void UUnrealzillaGlobalSettings::PostInitProperties()
|
|
{
|
|
Super::PostInitProperties();
|
|
}
|
|
|
|
FName UUnrealzillaGlobalSettings::GetCategoryName() const
|
|
{
|
|
return FName(TEXT("Plugins"));
|
|
}
|
|
|
|
#if WITH_EDITOR
|
|
void UUnrealzillaGlobalSettings::PostEditChangeProperty(FPropertyChangedEvent &PropertyChangedEvent)
|
|
{
|
|
Super::PostEditChangeProperty(PropertyChangedEvent);
|
|
|
|
if (PropertyChangedEvent.Property)
|
|
{
|
|
this->ExportValuesToConsoleVariables(PropertyChangedEvent.Property);
|
|
}
|
|
}
|
|
#endif
|