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

22 lines
524 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MetaHumanLocalLiveLinkSource.h"
class FMetaHumanVideoLiveLinkSource : public FMetaHumanLocalLiveLinkSource
{
public:
static FText SourceType;
virtual FText GetSourceType() const override;
virtual TSubclassOf<ULiveLinkSourceSettings> GetSettingsClass() const override;
protected:
virtual TSharedPtr<FMetaHumanLocalLiveLinkSubject> CreateSubject(const FName& InSubjectName, UMetaHumanLocalLiveLinkSubjectSettings* InSettings) override;
};