ILiveLinkProvider::UpdateSubjectFrameData

Send the static data of a subject to UE.

Choose your operating system:

Windows

macOS

Linux

References

Module

LiveLinkMessageBusFramework

Header

/Engine/Source/Runtime/LiveLinkMessageBusFramework/Public/LiveLinkProvider.h

Include

#include "LiveLinkProvider.h"

Syntax

bool UpdateSubjectFrameData
(
    const FName SubjectName,
    FLiveLinkFrameDataStruct && FrameData
)

Remarks

Send the static data of a subject to UE.

Returns

True if the message was sent or is pending an active connection.

Parameters

Parameter

Description

SubjectName

The name of the subject

StaticData

The frame data of the subject. The type should match the role's data send with UpdateSubjectStaticData. The FLiveLinkFrameDataStruct doesn't have a copy constructor. The argument is passed by r-value to help the user understand the compiler error message.

See Also