ILiveLinkProvider::UpdateSubjectStaticData

Send, to UE, the static data of a subject.

Choose your operating system:

Windows

macOS

Linux

References

Module

LiveLinkMessageBusFramework

Header

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

Include

#include "LiveLinkProvider.h"

Syntax

bool UpdateSubjectStaticData
(
    const FName SubjectName,
    TSubclassOf< ULiveLinkRole > Role,
    FLiveLinkStaticDataStruct && StaticData
)

Remarks

Send, to UE, the static data of a subject.

Returns

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

Parameters

Parameter

Description

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.

See Also