| 237 | }; |
| 238 | |
| 239 | END_SLATE_FUNCTION_BUILD_OPTIMIZATION |
| 240 | |
| 241 | /*------------------------------------------------------------------------------ |
| 242 | UFlowNodeBaseBlueprintFactory implementation |
| 243 | ------------------------------------------------------------------------------*/ |
| 244 | |
| 245 | UFlowNodeBaseBlueprintFactory::UFlowNodeBaseBlueprintFactory(const FObjectInitializer& ObjectInitializer) |
| 246 | : Super(ObjectInitializer) |
| 247 | { |
| 248 | SupportedClass = nullptr; |
| 249 | |
| 250 | DefaultParentClass = UFlowNodeBase::StaticClass(); |
| 251 | ParentClass = DefaultParentClass; |
| 252 | |
| 253 | bCreateNew = true; |
| 254 | bEditAfterNew = true; |
| 255 | } |
| 256 | |
| 257 | bool UFlowNodeBaseBlueprintFactory::ConfigureProperties() |
| 258 | { |
no outgoing calls
no test coverage detected