Files
UnrealEngineUWP/Engine/Plugins/Experimental/GeometryCollectionPlugin/Source/GeometryCollectionNodes/Private/Dataflow/GeometryCollectionNodesPlugin.cpp

27 lines
532 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Dataflow/GeometryCollectionNodesPlugin.h"
#include "CoreMinimal.h"
#include "Dataflow/DataflowNodeFactory.h"
#include "Dataflow/GeometryCollectionNodes.h"
#define LOCTEXT_NAMESPACE "DataflowNodes"
void IGeometryCollectionNodesPlugin::StartupModule()
{
Dataflow::GeometryCollectionEngineAssetNodes();
}
void IGeometryCollectionNodesPlugin::ShutdownModule()
{
}
IMPLEMENT_MODULE(IGeometryCollectionNodesPlugin, GeometryCollectionNodes)
#undef LOCTEXT_NAMESPACE