Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanLiveLink/Source/MetaHumanLocalLiveLinkSource/Public/MetaHumanLocalLiveLinkSourceSettings.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
696 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MetaHumanMediaSourceCreateParams.h"
#include "LiveLinkSourceSettings.h"
#include "MetaHumanLocalLiveLinkSourceSettings.generated.h"
UCLASS()
class METAHUMANLOCALLIVELINKSOURCE_API UMetaHumanLocalLiveLinkSourceSettings : public ULiveLinkSourceSettings
{
public:
GENERATED_BODY()
void SetSource(class FMetaHumanLocalLiveLinkSource* InSource);
FLiveLinkSubjectKey RequestSubjectCreation(const FString& InSubjectName, class UMetaHumanLocalLiveLinkSubjectSettings* InMetaHumanLocalLiveLinkSubjectSettings);
UPROPERTY()
bool bIsPreset = false;
private:
class FMetaHumanLocalLiveLinkSource* Source = nullptr;
};