Navigation
API > API/Plugins > API/Plugins/ConcertTakeRecorder > API/Plugins/ConcertTakeRecorder/UMultiUserTakesFunctionLibrary
Description
Sets the checkbox value in the "Record On Client" column in the settings displayed at the bottom of the "Take Recorder" tab. This function queries the state of any connected client. For the local client, you can also use SetRecordOnClientLocal.
| Name | SetRecordOnClient |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/MultiUserTakes/Source/ConcertTakeRecorder/Public/MultiUserTakesFunctionLibrary.h |
| Include Path | #include "MultiUserTakesFunctionLibrary.h" |
| Source | /Engine/Plugins/VirtualProduction/MultiUserTakes/Source/ConcertTakeRecorder/Private/MultiUserTakesFunctionLibrary.cpp |
UFUNCTION (BlueprintCallable, Category="Multi User Takes")
static void SetRecordOnClient
(
const FGuid & ClientEndpointId,
bool bNewValue
)
Parameters
| Name | Remarks |
|---|---|
| ClientEndpointId | ID of the client. You can get this by using e.g.UMultiUserSubsystem::GetRemoteClientIds or UMultiUserSubsystem::GetLocalClientId. |
| bNewValue | The new value to set |