exitembedded
exitembedded
#Overview
name: exitembedded
This variable is created as a Console Variable (cvar).
- type:
Exec
- help:
Sorry: Exec commands have no help
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/Source/Runtime/Engine/Private/GameEngine.cpp:1025
Scope (from outer to inner):
file
class class FEmbeddedCommunicationExec : public FSelfRegisteringExec
function virtual bool Exec
Source code excerpt:
virtual bool Exec(UWorld* Inworld, const TCHAR* Cmd, FOutputDevice& Ar) override
{
if (FParse::Command(&Cmd, TEXT("exitembedded")))
{
FEmbeddedCallParamsHelper Helper;
Helper.Command = TEXT("exitembedded");
if (FEmbeddedDelegates::GetEmbeddedToNativeParamsDelegateForSubsystem(TEXT("native")).IsBound())
{
FEmbeddedDelegates::GetEmbeddedToNativeParamsDelegateForSubsystem(TEXT("native")).Broadcast(Helper);
}
return true;
}