Files
UnrealEngineUWP/Engine/Plugins/Animation/ControlRig/Source/ControlRigEditor/Private/ControlRigComponentDetails.cpp
Helge Mathee b31b4c33c6 Control Rig - Moving out of experimental
#jira UE-114826
#rb na

Changing Control Rig plugin directory from

Engine/Plugins/Experimental/ControlRig

to

Engine/Plugins/Animation/ControlRig

[CL 16658308 by Helge Mathee in ue5-main branch]
2021-06-14 10:27:38 -04:00

19 lines
469 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ControlRigComponentDetails.h"
#include "UObject/Class.h"
#include "ControlRigComponent.h"
#define LOCTEXT_NAMESPACE "ControlRigComponentDetails"
TSharedRef<IDetailCustomization> FControlRigComponentDetails::MakeInstance()
{
return MakeShareable( new FControlRigComponentDetails );
}
void FControlRigComponentDetails::CustomizeDetails( IDetailLayoutBuilder& DetailBuilder )
{
}
#undef LOCTEXT_NAMESPACE