p.Chaos.VD.SpawnNewCVDInstance
p.Chaos.VD.SpawnNewCVDInstance
#Overview
name: p.Chaos.VD.SpawnNewCVDInstance
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Opens a new CVD windows wothout closing an existing one
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/ChaosVD/Source/ChaosVD/Private/ChaosVDModule.cpp:23
Scope: file
Source code excerpt:
FAutoConsoleCommand ChaosVDSpawnNewCVDInstance(
TEXT("p.Chaos.VD.SpawnNewCVDInstance"),
TEXT("Opens a new CVD windows wothout closing an existing one"),
FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
{
FChaosVDModule::Get().SpawnCVDTab();
})
);