Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanLiveLink/Source/MetaHumanLocalLiveLinkSource/Private/MetaHumanAudioLiveLinkSource.h
2025-05-18 13:04:45 +08:00

20 lines
497 B
C++

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