Navigation
API > API/Runtime > API/Runtime/LiveLinkMessageBusFramework > API/Runtime/LiveLinkMessageBusFramework/FLiveLinkProvider
Description
Send, to UE, the static data of a subject.
Virtual Inheritance
- ILiveLinkProvider::UpdateSubjectStaticData → FLiveLinkProvider::UpdateSubjectStaticData
| Name | UpdateSubjectStaticData |
| Type | function |
| Header File | /Engine/Source/Runtime/LiveLinkMessageBusFramework/Public/LiveLinkProviderImpl.h |
| Include Path | #include "LiveLinkProviderImpl.h" |
| Source | /Engine/Source/Runtime/LiveLinkMessageBusFramework/Private/LiveLinkProvider.cpp |
virtual bool UpdateSubjectStaticData
(
const FName SubjectName,
TSubclassOf < ULiveLinkRole > Role,
FLiveLinkStaticDataStruct && StaticData,
const TMap < FName , FString > & ExtraAnnotations
)
True if the message was sent or is pending an active connection.
Parameters
| Name | Remarks |
|---|---|
| SubjectName | The name of the subject |
| Role | The Live Link role of the subject. The StaticData type should match the role's data. |
| StaticData | The static data of the subject. The FLiveLinkStaticDataStruct doesn't have a copy constructor. The argument is passed by r-value to help the user understand the compiler error message. |
| ExtraAnnotations | Extra annotations to pass in with the static data message. |
See Also
-
RemoveSubject