p.Chaos.StartVDRecording
p.Chaos.StartVDRecording
#Overview
name: p.Chaos.StartVDRecording
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Turn on the recording of debugging data
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/Experimental/ChaosVisualDebugger/Private/ChaosVDRuntimeModule.cpp:19
Scope: file
Source code excerpt:
FAutoConsoleCommand ChaosVDStartRecordingCommand(
TEXT("p.Chaos.StartVDRecording"),
TEXT("Turn on the recording of debugging data"),
FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
{
FChaosVDRuntimeModule::Get().StartRecording(Args);
})
);