Files
UnrealEngine/Engine/Source/Editor/Persona/Private/PersonaPreviewSceneController.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
696 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "PersonaPreviewSceneController.h"
#include "AnimationEditorPreviewScene.h"
#include "DetailCategoryBuilder.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(PersonaPreviewSceneController)
IDetailPropertyRow* UPersonaPreviewSceneController::AddPreviewControllerPropertyToDetails(const TSharedRef<IPersonaToolkit>& PersonaToolkit, IDetailLayoutBuilder& DetailBuilder, IDetailCategoryBuilder& Category, const FProperty* Property, const EPropertyLocation::Type PropertyLocation)
{
TArray<UObject*> ListOfPreviewController{ this };
return Category.AddExternalObjectProperty(ListOfPreviewController, Property->GetFName(), PropertyLocation);
}