| 79 | } |
| 80 | |
| 81 | UPCGExFactoryData* UPCGExSortingRuleProviderSettings::CreateFactory(FPCGExContext* InContext, UPCGExFactoryData* InFactory) const |
| 82 | { |
| 83 | UPCGExSortingRule* NewFactory = InContext->ManagedObjects->New<UPCGExSortingRule>(); |
| 84 | NewFactory->Priority = Priority; |
| 85 | NewFactory->Config = Config; |
| 86 | return Super::CreateFactory(InContext, NewFactory); |
| 87 | } |
| 88 | |
| 89 | #if WITH_EDITOR |
| 90 | FString UPCGExSortingRuleProviderSettings::GetDisplayName() const { return Config.GetDisplayName(); } |
nothing calls this directly
no outgoing calls
no test coverage detected