voice.sendLocalTalkersToEndpoint
voice.sendLocalTalkersToEndpoint
#Overview
name: voice.sendLocalTalkersToEndpoint
This variable is created as a Console Variable (cvar).
- type: Cmd
- help: This will send audio output for all outgoing voip audio to the named endpoint. if given no arguments, this will disconnect all external endpoints.
It is referenced in 1 C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Online/OnlineSubsystemUtils/Source/OnlineSubsystemUtils/Private/OnlineSubsystemUtils.cpp:69
Scope: file
Source code excerpt:
static FAutoConsoleCommand GSendLocalTalkersToEndpointCommand(
	TEXT("voice.sendLocalTalkersToEndpoint"),
	TEXT("This will send audio output for all outgoing voip audio to the named endpoint. if given no arguments, this will disconnect all external endpoints."),
	FConsoleCommandWithArgsDelegate::CreateStatic(
		[](const TArray< FString >& Args)
{
	IOnlineSubsystem* PlatformSubsystem = IOnlineSubsystem::Get();
	IOnlineVoicePtr PlatformVoiceInterface = PlatformSubsystem ? PlatformSubsystem->GetVoiceInterface() : nullptr;