SocialUI.StopRandomizeUserPresence
SocialUI.StopRandomizeUserPresence
#Overview
name: SocialUI.StopRandomizeUserPresence
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Stop randomizing users\' presnece, with optional param to clear off already generated presence (default to false). @param bClearGeneratedPresence uint8
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/OnlineFramework/Source/Party/Private/SocialToolkit.cpp:40
Scope: file
Source code excerpt:
static FAutoConsoleCommandWithWorldAndArgs CMD_OnStopRandomUserPresence
(
TEXT("SocialUI.StopRandomizeUserPresence"),
TEXT("Stop randomizing users' presnece, with optional param to clear off already generated presence (default to false). @param bClearGeneratedPresence uint8"),
FConsoleCommandWithWorldAndArgsDelegate::CreateLambda([](const TArray<FString>&Args, UWorld* World)
{
bool bClearGeneratedPresence = false;
if (Args.Num() > 0)
{